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 96 views
1 answer 124 views
1 answer 159 views
1 answer 151 views
...