Практически я хочу, чтобы это произошло:
Код: Выделить всё
int x;
Console.WriteLine(sizeof(x)); // Output: 4
Код: Выделить всё
Console.WriteLine(sizeof(int)); // Output: 4
Подробнее здесь: https://stackoverflow.com/questions/817 ... at-runtime
Код: Выделить всё
int x;
Console.WriteLine(sizeof(x)); // Output: 4
Код: Выделить всё
Console.WriteLine(sizeof(int)); // Output: 4