Does CLR add overhead fields to type which value is null?

41 Views Asked by At

I am getting familiar with CLR and I wonder if I write in my code something like that:

String s = null;

Does CLR allocate memory in address space by reserving some space and adding overhead fields and without any value?

I was trying to find answers in the book CLR via C# but failed

0

There are 0 best solutions below