Hello All,
Where is the memory allocated for Value TYpes which are part of
a class, when you create an instance of the class, it goes on heap, where is the memory allocate members which are of value types in the class?
Class Customer
{
private int _customerID,
private string _SSN;
}
Regards
LinkPraveen.