How to determine the memory usage for a single char from array of chars in C#

1 Answer

0 votes
using System;
 
class Program
{
    static void Main()
    {
        long tm1 = GC.GetTotalMemory(false);

        char[] array = new char[10000];

        long tm2 = GC.GetTotalMemory(false);
        
        Console.WriteLine(tm1);
        Console.WriteLine(tm2);
        
        Console.WriteLine((tm2 - tm1) / 10000 + " bytes");
    }
}
  
  
/*
run:
  
4196840
4216872
2 bytes
  
*/

 



answered Sep 12, 2020 by avibootz

Related questions

1 answer 85 views
1 answer 107 views
1 answer 149 views
1 answer 140 views
...