What is reflection?
All .NET compilers produce metadata about the types defined in the modules they produce. This metadata is packaged along with the module (modules in turn are packaged... Read more »
All .NET compilers produce metadata about the types defined in the modules they produce. This metadata is packaged along with the module (modules in turn are packaged... Read more »
Class instances often encapsulate control over resources that are not managed by the runtime, such as window handles (HWND), database connections, and so on. Therefore,... Read more »
Full Assembly reference: A full assembly reference includes the assembly’s text name, version, culture, and public key token (if the assembly has a strong name).... Read more »
Major or minor. Changes to the major or minor portion of the version number indicate an incompatible change. Under this convention then, version 2.0.0.0 would be... Read more »
The Page_Load event handler in the page checks for IsPostBack property value, to ascertain whether the page is posted. The Page.IsPostBack gets a value indicating... Read more »
The .NET framework provides several core run-time services to the programs that run within it - for example exception handling and security. For these services to... Read more »
Globalization is the process of creating an application that meets the needs of users from multiple cultures. It includes using the correct currency, date and time... Read more »
Resource files are the files containing data that is logically deployed with an application.These files can contain data in a number of formats including strings,... Read more »
Finalize method is used to free the memory used by some unmanaged resources like window handles (HWND). It’s similar to the destructor syntax in C#. The GC calls... Read more »
Encapsulation is the ability to hide the internal workings of an object’s behavior and its data. For instance, let’s say you have a object named Bike and this... Read more »
A GUID is a 128-bit integer (16 bytes) that can be used across all computers and networks wherever a unique identifier is required. Such an identifier has a very... Read more »
We need to serialize the object,if you want to pass object from one computer/application domain to another.Process of converting complex objects into stream of... Read more »
Schemas can be included inside of XML file is called Inline Schemas.This is useful when it is inconvenient to physically seprate the schema and the XML document.A ... Read more »
“Advantage includes automatic garbage collection,memory management,security,type checking,versioning Managed code is compiled for the .NET run-time environment.... Read more »
Yes. If a class that is to be serialized contains references to objects of other classes, and if those classes have been marked as serializable, then their objects... Read more »
Both are same. System.Int32 is a .NET class. Int is an alias name for System.Int32. Read more »
A Process is an instance of an running application. And a thread is the Execution stream of the Process. A process can have multiple Thread. When a process starts... Read more »
PID is the process Id of the application in Windows. Whenever a process starts running in the Windows environment, it is associated with an individual process Id... Read more »
In Task Manger, select the View menu, then select columns and check PID (Process Identifier).In Linux, PID is used to debug a process explicitly. However we cannot... Read more »
The hugely simplistic version is that every time it garbage-collects, it starts by assuming everything to be garbage, then goes through and builds a list of everything... Read more »