In .NET, there are two categories of types, reference types and value types.
Structs are value types and classes are reference types.
The general difference is that a reference type lives on the heap, and a value type lives inline, that is, wherever it is your variable or field is defined.
A variable containing a value type contains the entire value type value....
Thursday, 23 January 2014
Tuesday, 14 January 2014
What is Static Class ?
Static Class is same as of non Static class, the only difference i.e. its can not be instantiated means you can not create new instance of the static class.
In other words you cannot use NEW keyword to create a variable of class type.
For static class ,static constructor is called only once before the class is referenced for the first time in a program loaded once is life time of program and a...
Monday, 13 January 2014
What is .NET Framework?

.Net Framework is a software Framework developed by Microsoft that runs primarily on Microsoft windows.
It Includes large libraries and provides language Interoperability across several programming Language.
Programs Written in .Net Framework executes in software environment known as Common Language Run...
Subscribe to:
Posts (Atom)