Supported sizeof() Types : Unsafe Code « Language Basics « C# / C Sharp






Supported sizeof() Types

 


Expression           Result

sizeof(sbyte)        1

sizeof(byte)         1

sizeof(short)        2

sizeof(ushort)       2

sizeof(int)          4

sizeof(uint)         4

sizeof(long)         8

sizeof(ulong)        8

sizeof(char)         2

sizeof(float)        4

sizeof(double)       8

sizeof(bool)         1
           
         
  








Related examples in the same category

1.int pointer variable
2.Unsafe Methods
3.Accessing Structure Members with a Pointer
4.Fixing Managed Data in Memory
5.Allocating Memory from the Stack
6.Get variable address in unsafe mode
7.Unsafe code: get data type size
8.Address and size of pointer object
9.Using the unsafe keyword
10.object pointer
11.Use unsafe method to clone array
12.unsafe and fixed block
13.mark method as unsafe
14.Use unsage code to swap two integers
15.Pointer for struct
16.Compare pointer