Programing Tips.Net Sql server C,C# and some other stuff.
Get Paid By Click
Mginger Mobile Money
Dec 19, 2009
Fundamental Data Types in C# by Elvisjino
C# divides Data Types in to Two. 1.Value Types
Most of the basic datatype in c# are Value types.
These data type represents the actual data(stored on the stack) Eg: int ,char,structure,enum.
2.Reference Types
It Represents a pointer or to the data(stord on the Heap).the memory location of a reference type just contains the address of the object on the heap. Eg:Class,Interface,arrays