Memory management in C#


Stack Memory: Stack memory is used for static memory allocation. When a method is invoked, a block of memory is reserved for those variables defined in the method, including variables that are passed to it by value. Once the method finishes execution, this block of memory is freed up for future use. The key points about stack memory are:

  • It’s automatically allocated and deallocated.
  • It’s faster to allocate compared to heap memory.
  • It’s limited in size.
  • The variables stored in the stack are only visible to the owner Thread.
  • The stack is thread-specific and cannot be accessed by other threads.

Heap Memory: Heap memory, on the other hand, is used for dynamic memory allocation. Objects are created and stored in the heap, and the memory is deallocated when no references to those objects remain. The key points about heap memory are:

  • It’s used for dynamic memory allocation.
  • The size is not limited.
  • Slower to allocate compared to stack memory.
  • Objects in the heap are globally accessible.

Classes, Methods, and Scopes: In C#, classes and methods define the scope of a variable. Variables defined within a class are stored on the heap, while variables defined within a method are stored on the stack.

  • Class Scope: Variables declared in a class are called fields. They are accessible within any method of the class. These variables are stored on the heap and their lifetime is as long as the class instance exists.
  • Method Scope: Variables declared in a method are only accessible within the method. They are stored on the stack and their lifetime is as long as the method execution lasts.

Variable References and Object Locations: When you create an object in C#, the actual data is stored in the heap, and the reference to that data is stored in the stack. Therefore, when you assign an object to a new variable, you’re actually just copying the reference, not the actual data.

Person person1 = new Person(); // 'person1' is a reference to a new Person object in the heap
Person person2 = person1; // 'person2' now refers to the same Person object

In this example, person1 and person2 are both references to the same object in the heap. Any changes made to the object through person1 will be reflected when accessing the object through person2, because they both refer to the same location in memory.

If you create a variable inside a method body in C#, it will be stored in the stack memory. These variables are known as local variables. Their scope is limited to the method they are declared in, and they are only alive for the duration of the method execution. Once the method finishes execution, these variables are automatically deallocated from the stack memory. Here’s an example:

public void MyMethod()
{
    int localVariable = 10; // This variable is stored in the stack memory
    // Use localVariable...
} // localVariable is deallocated here when the method finishes execution

In this example, localVariable is stored in the stack memory and it’s only accessible within MyMethod(). Once MyMethod() finishes execution, localVariable is automatically removed from the stack. 


If you create an instance of a class (an object) inside a method in C#, the actual object will be stored in the heap memory, while the reference to that object will be stored in the stack memory.

Here’s an example:

public void MyMethod()
{
    Person person = new Person(); // 'person' is a reference stored in the stack, the actual Person object is stored in the heap
    // Use person...
} // The reference 'person' is deallocated here when the method finishes execution

In this example, person is a reference to a Person object. The reference person is stored in the stack memory, and it’s only accessible within MyMethod(). The actual Person object that person refers to is stored in the heap memory. Once MyMethod() finishes execution, the reference person is automatically removed from the stack. However, the Person object in the heap will only be deallocated when there are no more references to it, which is handled by the garbage collector in C#.


Method parameters in C# can be passed by value (pass-by-value) or by reference (pass-by-reference).

Pass-by-Value: In pass-by-value, a copy of the variable is passed into the method. Any changes made to this variable inside the method do not affect the original variable. The copied variable is stored in the stack memory. Here’s an example:

public void MyMethod(int number)
{
    number = 20; // This does not affect the original variable
}

In this example, number is a copy of the original variable passed into MyMethod(). Any changes made to number inside MyMethod() do not affect the original variable.

Pass-by-Reference: In pass-by-reference, a reference to the original variable is passed into the method. Any changes made to this variable inside the method also affect the original variable. The reference is stored in the stack memory, while the actual object (if it’s an object) is stored in the heap memory. Here’s an example:

public void MyMethod(ref int number)
{
    number = 20; // This changes the original variable
}

In this example, number is a reference to the original variable passed into MyMethod(). Any changes made to number inside MyMethod() also affect the original variable.

Note: When passing a reference type (like a class) by value, the reference is copied, but the object it refers to is the same. So changes to the object’s fields will affect the original object. But if you try to change the reference itself (like assigning it to a new object), it won’t affect the original reference.


Vikash Chauhan

C# & .NET experienced Software Engineer with a demonstrated history of working in the computer software industry.

Post a Comment

Previous Post Next Post

Contact Form