دوشنبه 23 شهریور 1388
نویسنده: حمیدرضا طبقه بندی: آموزش، English، مقالات، برنامه نویسی،
لغت نامه
Visual Studio and .NET Framework
Part 1:(A-C)I
سلام،
تصمیم گرفتم در یک سلسه مقالات اصطلاحات و لغات کلیدی ویژوال استودیو و فرم ورک رو معرفی کنم که از داخل ویژوال استودیو 2008در آوردم.
به دلیل زیاد بودن مطالب بر اساس حروف الفبا به چهار قسمت تقسیم کردم. امیدوارم ازش استفاده کنید و نظراتتون رو برام بزارید.
استفاده از این مقالات و لغت نامه تنها باذکر منبع(سایت زرسازان)مجاز خواهد بود،
بیایید به زحمات یکدیگر احترام بگذاریم....

|
Visual Studio and .NET Framework Glossary Visual Studio and .NET Framework Glossary |
This glossary defines key terms of Visual Studio 2008 and the .NET Framework.
Refrence:
Of
MSDN 2008
Part1:(A-C)
.NET Compact Framework
A hardware-independent environment for running programs on resource-constrained computing devices. It inherits the full .NET Framework architecture of the common language runtime, supports a subset of the .NET Framework class library, and contains classes designed exclusively for the .NET Compact Framework. Supported devices include personal data assistants (PDAs) (such as the Pocket PC), mobile phones, set-top boxes, automotive computing devices, and custom-designed embedded devices built with the Microsoft Windows CE.NET operating system.
.NET Framework
An integral Windows component that supports building, deploying, and running the next generation of applications and Web services. It provides a highly productive, standards-based, multilanguage environment for integrating existing investments with next generation applications and services, as well as the agility to solve the challenges of deployment and operation of Internet-scale applications. The .NET Framework consists of three main parts: the common language runtime, a hierarchical set of unified class libraries, and a componentized version of ASP called ASP.NET. See also: ASP.NET, common language runtime, .NET Framework class library.
.NET Framework class library
A library of classes, interfaces, and value types that are included in the .NET Framework SDK. This library provides access to system functionality and is designed to be the foundation on which .NET Framework applications, components, and controls are built. See also: class, CLS-compliant, Common Language Specification, interface, value type.
.NET Framework data provider
A component of ADO.NET that provides access to data from a relational data source. A .NET Framework data provider contains classes to connect to a data source, execute commands at the data source, and return query results from the data source, including the ability to execute commands within transactions. A .NET Framework data provider also contains classes to populate a DataSet with results from a data source and propagate changes in a DataSet back to the data source.
دوشنبه 23 شهریور 1388
نویسنده: حمیدرضا طبقه بندی: آموزش، برنامه نویسی، مقالات، English،
لغت نامه
Visual Studio and .NET Framework
Part1:(A-C)II
accelerator editor
A resource editor that allows you to add, delete, change, or browse the shortcut key assignments for your project.
access control list (ACL)
A list that specifies the rules for access to a particular resource. Microsoft Windows NT implements user-based ACLs, which specify the resources available to a particular user.
actions pane
A customizable document-level task pane in Microsoft Office Word and Microsoft Office Excel.
Active Template Library
A collection of C++ templates to help users create Component Object Model (COM) objects.
ActiveX control
A control, such as a check box or button that offers options to users or runs macros or scripts that automate a task. You can write macros for the control in Microsoft Visual Basic for Applications or scripts in Microsoft Script Editor.
add-in
In the .NET Framework add-in programming model, the add-in application assembly that communicates with a host application over a communication pipeline. See also: host, pipeline.
add-in view
In the .NET Framework add-in programming model, an assembly that contains interfaces or abstract base classes, and represents the add-in's view of the methods and types used to communicate with a host. See also: add-in, host.
add-in-side adapter
In the .NET Framework add-in programming model, an assembly that contains one or more classes, and converts data to and from the add-in view and the contract. Depending on the direction of the call, the adapter is either converting from a view to a contract or from a contract to a view. See also: add-in, contract.
ADO.NET
The suite of data access technologies included in the .NET Framework class libraries that provide access to relational data and XML. ADO.NET consists of classes that make up the DataSet (such as tables, rows, columns, relations, and so on), .NET Framework data providers, and custom type definitions (such as SqlTypes for SQL Server).
adorner
A special glyph on the design surface. Adorners are usually attached to a target control, and they give the user a graphical means of adjusting the control's properties.
AfxFreeLibrary
A function called by MFC applications after they explicitly linked to a DLL module when that module is no longer needed. This function decrements the module's reference count and, if the reference count is zero, unmaps it from the address space of the process.
AfxLoadLibrary
A library that is used by MFC applications when linking to an extension DLL.
aggregate event
In WMI, a type of event that is generated after a series of events of another type have occurred. An aggregate event is used to represent a series of events to avoid flooding the event consumer. See also: event, event consumer.
alpha channel
In GDI+, the portion of pixel color data reserved for transparency information.
anchoring
The way of determining the edges of a parent control to which a control is bound and how a control is resized with its parent. Anchoring and docking are mutually exclusive. See also: docking.
anonymous method
A code block that is passed as a parameter to a delegate.
anonymous type
A class type whose name is generated by the compiler and that inherits directly from Object. Members of an anonymous type are properties that are inferred from the object initializer that creates instances of the type.
application base
The directory where the .exe file that loads into the initial or default application domain is located. If you create your own application domain, the application base is the location you specify in the AppDomainSetup class. See also: application domain.
application domain (AppDomain)
A boundary that the common language runtime establishes around objects created within the same application scope (that is, anywhere along the sequence of object activations beginning with the application entry point). Application domains help isolate objects created in one application from those created in other applications so that run-time behavior is predictable. Multiple application domains can exist in a single process.
application manifest
The file used in ClickOnce applications that describes the application and all of its constituent files.
application service
In ASP.NET, built-in functionality for common application tasks. ASP.NET includes application services for authentication (ASP.NET membership), persistent per-user information (profile properties), and more.
application state
In ASP.NET, a variable store that is created on the server for the current application and is shared by all users. Application state is typically used to store information that is used for all users, such as application-wide settings.
application-level add-in
A supplemental program that modifies or adds functionality to an existing program or application. The modifications are available to the application at all times.
ASP.NET
A set of technologies in the Microsoft .NET Framework for building Web applications and Web services. ASP.NET pages execute on the server and generate markup (such as HTML, WML, or XML) that is sent to a desktop or mobile browser. ASP.NET pages use a compiled, event-driven programming model that improves performance and enables the separation of application logic and user interface. ASP.NET pages and Web services files created using ASP.NET contain server-side (rather than client-side) logic written in Visual Basic, C#, or any .NET-compatible language. Web applications and Web services take advantage of the features of the common language runtime, such as type safety, inheritance, language interoperability, versioning, and integrated security.
ASP.NET application services database
In ASP.NET, a database that stores the data for several ASP.NET application services, including membership, Web Parts personalization, roles, and profiles. The database can be a local database in the Web site's App_Data folder or a SQL Server or other database, depending on how the site is configured.
ASP.NET mobile controls
A set of ASP.NET controls designed for mobile Web applications. ASP.NET mobile controls extend their ASP.NET server control counterparts.
ASP.NET mobile Web Forms
Extensions to ASP.NET Web Forms that target mobile devices from cell phones to Pocket PCs.
ASP.NET page
A component of an ASP.NET application.
ASP.NET server control
A server-side component that encapsulates user interface and related functionality. An ASP.NET server control derives directly or indirectly from the System.Web.UI.Control class. The superset of ASP.NET server controls includes Web server controls, HTML server controls, and ASP.NET mobile controls. The page syntax for an ASP.NET server control includes a runat="server" attribute on the control's tag. See also: HTML server control, validation server controls, Web server control.
ASP.NET Web application
An application that processes HTTP requests (Web requests) and executes on top of ASP.NET. An ASP.NET Web application can include ASP.NET pages, Web services, HTTP handlers, and HTTP modules.
دوشنبه 23 شهریور 1388
نویسنده: حمیدرضا طبقه بندی: آموزش، English، مقالات، برنامه نویسی،
لغت نامه
Visual Studio and .NET Framework
Part1:(A-C)III
code access security
A mechanism provided by the common language runtime whereby managed code is granted permissions by security policy and these permissions are enforced, helping to limit the operations that the code will be allowed to perform.
code-behind class
A class that is accessed by an .aspx file, but resides in a separate file (such as a .dll or .cs file). For example, you can write a code-behind class that creates an ASP.NET custom server control, contains code that is called from an .aspx file, but does not reside within the .aspx file.
code-behind file
A code file containing the page class that implements the program logic of a Web Forms or ASP.NET mobile Web Forms application.
code-behind page
See other term: code-behind file
COM callable wrapper (CCW)
A proxy object generated by the common language runtime so that existing COM applications can use managed classes, including .NET Framework classes, transparently.
COM interop
A service that enables .NET Framework objects to communicate with COM objects.
Common Information Model (CIM)
In WMI, the model that describes how to represent real-world managed objects. CIM uses an object-oriented paradigm, where managed objects are modeled using the concepts of classes and instances. The CIM is divided into the metamodel and the standard schema. The metamodel describes what types of entities make up the schema. It also defines how these entities can be combined into objects that represent real-world devices.
common language runtime
The engine at the core of managed code execution. The runtime supplies managed code with services such as cross-language integration, code access security, object lifetime management, and debugging and profiling support.
common language runtime host
An unmanaged application that uses a set of APIs, called the hosting interfaces, to integrate managed code into the application. Common language runtime hosts often require a high degree of customization over the runtime that is loaded into the process. The hosting interfaces allow common language runtime hosts to specify settings that configure the garbage collector, select the appropriate build for their environment (server versus workstation), and so on. Common language runtime hosts often support an extensibility model that allows the end user to dynamically add new pieces of functionality, such as a new control or a user-written function. These extensions are typically isolated from each other in the process using application domains and custom security settings. Examples of common language runtime hosts include ASP.NET, Microsoft Internet Explorer, and a host to run executables launched from the Windows Shell. See also: application domain, common language runtime, managed code.
Common Language Specification (CLS)
A subset of language features supported by the common language runtime, including features common to several object-oriented programming languages. CLS-compliant components and tools are guaranteed to interoperate with other CLS-compliant components and tools. See also: CLS-compliant.
common object file format (COFF)
A format in 32-bit programming for executable (image) and object files that is portable across platforms. The Microsoft implementation is called portable executable (PE) file format. See also: portable executable (PE) file.
common type system
The specification that determines how the common language runtime defines, uses, and manages types.
communication pipeline
See other term: pipeline
comparison evaluator
A filter that compares a device capability name to a value. See also: device capabilities.
محبوبه عمیدی: پس از جنگ جهانی دوم، این اولین بار است كه نگرانیها در مورد كمبود مواد غذایی اوج گرفته است. فقط در انگلستان، بیش از 50 درصد مواد غذایی مورد نیاز از واردات تامین میشود.
اما با افزایش 50 درصدی جمعیت جهان تا سال 2050 / 1429 و تغییرات آبوهوایی كه بسیاری از كشورهای صادركننده مواد غذایی به این كشور را تهدید خواهد كرد، سیستم خوار و بار جهانی دیگر آنقدرها قابل اطمینان نیست.
ببینیم این تغییرات روی سبد خرید شهروندان چه تأثیری میتواند داشته باشد؟ بدونشك مواد غذایی گرانتر خواهند شد، اگر قیمتها را در سیسال گذشته باهم مقایسه كنیم، میبینیم قیمتها هنوز پایین هستند و مواد غذایی در دسترس ما ارزان بودهاند. این دوران دارد تمام میشود. باید انتظار قیمتهای بالاتری را داشته باشیم، شاید خیلیبالاتر، مخصوصا برای محصولات لبنی و گوشت كه از دامها و طیور تأمین میشوند.
در اغلب كشورها، تغذیه دامها با استفاده از علوفه وارداتی كه اغلب محصول كشورهای گرمسیری است، صورت میگیرد؛ كشورهایی كه توانایی تولید محصولات غلاتی مانند گندم، برنج، ذرت و حبوباتی مانند سویا را دارند و با افزایش دمای زمین، گرمتر و خشكتر خواهند شد.
بالارفتن قیمت این محصولات در اوایل سال 2008 / 1386 باعث افزایش 15 درصدی قیمت تخممرغ، لبنیات و بعضی از انواع گوشتها شد.
باید گفت، این میان خبرهای خوبی هم هست. گرانشدن مواد غذایی وارداتی به سود كشاورزان بومی كشورهای شمالی است.
پیشبینیها نشان میدهند، در قرن بیست و یكم هوای این كشورها گرمتر و مرطوبتر از قبل خواهد شد و این یعنی كشاورزان قادر خواهند بود، حجم بیشتری از غلات مانند گندم و بسیاری از محصولاتی را كه در حال حاضر وارداتی هستند، تولید كنند. در شرایط فعلی چیزی حدود 80 تا 90 درصد میوهها و سبزیجات مصرفی در سالاد به انگلستان وارد میشوند، كه تقریبا همه آنها قابلیت تولید در داخل را خواهند داشت. میتوان تغییرات فوقالعادهای را در گلخانهها انتظار داشت.
مواد اولیه
برنج: افزایش دمای جهانی، تولید برنج را به سمت شمال كره زمین سوق داده است. بنابراین ممكن است سالهای آینده شاهد شالیزارهای برنج در حاشیه رودهای بزرگ كشورهای اروپایی باشیم؟ از لحاظ علمی این امكان وجود دارد و با افزایش قیمت غذاهای اصلی در قاره آسیا، ممكن است چارهای جز این نباشد.....
تکامل رو به رشد روباتها در دنیای مدرن نگرانی بسیاری از متخصصان علوم روباتیک را برانگیخته است و بر همین اساس، یکی از نشریه های علمی به بررسی دلایل نگران کننده بودن تکامل روباتها برای انسان پرداخته است.
به گزارش مهر، شنیدن نام روباتهایی مانند رومبا و آسیمو ترس و وحشتی برابر نام روبات ترمیناتور در انسان ایجاد نمی کند اما با توجه به اینکه روبات رومبا که وظیفه تمیزکردن سطوح را به عهده دارد توسط سازنده روباتهای جنگی و نظامی تولید شده است، می تواند اندکی ترس را از سرنوشت انسانها در رویارویی با روباتها به وجود آورد.
صنعت امروزه روباتیک از تولید صرف روباتهای تمیز کننده، پرستار و اسباب بازی گذشته است در حالیکه کشورهایی مانند ژاپن و کره در حال تولید روباتهایی به منظور نگهداری از جمعیت گسترده سالمندان خود هستند، کشوری مانند ایالات متحده بر روی تولید هزاران روبات جنگاور تمرکز کرده تا بتواند در میدانهای رزمی مدرن نیز شرکت داشته باشند در عین حال بسیاری از افراد با تجهیز خود به ابزارهای روباتیک بدن قصد دارند خود و توانایی بدن خود را به نسل آتی روباتها نزدیک سازند.
روباتها چه انسان نما باشند، چه نباشند و چه در جهت رفع نیازهای انسان باشند یا به منظور کشتار و تخریب تولید شده باشند، در آینده ای نه چندان دور برای انسانها خطرساز خواهند شد. سایت علمی لایو ساینس طی مقاله ای جالب به بررسی 5 دلیل مهم پرداخته است که انسانها بر اساس آن باید از روباتها هراس داشته باشند.
انسان به روبات وابسته می شود: ورود روباتها به زندگی انسان نیازمند زور و جبر نیست. میزان کشش انسانها به اشکال مختلف و جذاب روباتهای مختلف و رنگارنگ که به صورت مداوم در حال تکمیل و ارتقا هستند، حقیقتی است که طی ماههای جاری به وضوح مشاهده می شود. مغز در احساس صمیمیت انسان با روباتهایی مانند روباتهای شبه کودک مقصر است، زیرا انسانها برای ادراک چهره های مختلف و احساساتی شدن درباره هر موضوعی توانایی بالایی دارند. حتی اگر آن موضوع یک ماشین و یا یک عروسک باشد با این حال این ماشینها نیاز دارند یکی از مهمترین موانع خود را برای ربودن کامل قلب انسانها از سر راه خود بردارند. روباتها باید ظاهری مشابه انسانها داشته باشند تا چهره زمخت و چشمهای شیشه ای آنها انسان را نهراساند امری که اغلب دانشمندان روباتیک در تلاشند به آن دست یابند.
برنامه نویسی
(27)
نرم افزار
(33)
شیمی
(5)
آموزش
(23)
روانشناسی
(26)
کلمات بزرگان
(11)
تصاویر هنرمندان
(3)
ورزشی
(6)
جون من بخند!
(23)
پزشکی
(16)
موبایل
(12)
نمونه سوال فیزیک۱
(1)
نمونه سوال فیزیک۲
(2)
نمونه سوال فیزیک۳
(0)
نمونه سوال فیزیک۱و۲ پیش
(0)
English
(7)
شعر
(20)
داستان
(8)
رشته های دانشگاهی
(6)
سایت های برتر
(8)
عمومی
(126)
سخنی با شما
(25)
تصاویر
(70)
اخبار IT
(68)
نوابغ ایران
(12)
آیا می دانید؟
(22)
اخبار
(91)
هنری
(8)
ادبی
(30)
کتاب
(4)
مصاحبه
(3)
مقالات
(25)
هوا فضا
(2)
ریاضی
(12)
رایانه
(16)
فیزیک
(9)
ترفندوهک
(16)
معارف
(47)
فرهنگ
(8)
سخت افزار
(8)
گرافیک و انیمیشن
(2)
30a30
(3)