Variables of reference types, referred to as objects, store references to the actual data. This section introduces the following keywords used to declare reference types:
class
interface
delegate
This section also introduces the following built-in reference types:
Assemblies .NET Framework The Assembly is a new concept that the .NET framework introduces to make programming more easier. The .NET framework introduces assemblies as the main building blocks of your…
Apply ASP.NET Themes Programmatically Theme and skin preferences in page declarations and configuration files, you can apply themes programmatically. You can set both page themes and style sheet themes…
Value Types Data in ASP.Net C# Variable that are based on value types directly contain a values. Assigning one value type variable to another copies the contained value. This differs from the assignment of…
Memory Management .NET Framework The .NET Framework CLR frees the developer from the burden of managing memory (allocating and freeing up when done); instead it does the memory management itself. To this end, the…
Can you have two files with the same file name in GAC? Can you have two files with the same file name in GAC? Yes, remember that GAC is a very special folder, and while normally you would not be able to place two files with the same…
.Net Threading, What are the types of threading models? Single Threading: This is the simplest and most common threading model where a single thread corresponds to your entire application’s process.
Apartment Threading (STA): This…