Lets understand memory management with simple C# Program as given below:-
class Employee
{
int Employee_Id; //member variables/instance variable of a class
string Employee_Name;
public static void Main()
{
Employee objEmployee=new Employee();
}
}
Que...