---------- 20210217 sizeof ref: https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/operators/sizeof The sizeof operator returns the number of bytes occupied by a variable of a given type. The argument to the sizeof operator must be the name of an unmanaged type or a type parameter that is constrained to be an unmanaged type. The sizeof operator requires an unsafe context. However, the expressions presented in the following table are evaluated in compile time to the corresponding constant values and don't require an unsafe context: Expression Constant value 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(decimal) 16 sizeof(bool) 1 You also don't need to use an unsafe context when the operand of the sizeof operator is the name of an enum type. The following example demonstrates the usage of the sizeof operator: using System; public struct Point { public Point(byte tag, double x, double y) => (Tag, X, Y) = (tag, x, y); public byte Tag { get; } public double X { get; } public double Y { get; } } public class SizeOfOperator { public static void Main() { Console.WriteLine(sizeof(byte)); // output: 1 Console.WriteLine(sizeof(double)); // output: 8 DisplaySizeOf(); // output: Size of Point is 24 (sizeof unmanaged memory in bytes) DisplaySizeOf(); // output: Size of System.Decimal is 16 unsafe { Console.WriteLine(sizeof(Point*)); // output: 8 (unsafe pointer size) } } static unsafe void DisplaySizeOf() where T : unmanaged { Console.WriteLine($"Size of {typeof(T)} is {sizeof(T)}"); } } The sizeof operator returns a number of bytes that would be allocated by the common language runtime in managed memory. For struct types, that value includes any padding, as the preceding example demonstrates. The result of the sizeof operator might differ from the result of the Marshal.SizeOf method, which returns the size of a type in unmanaged memory. sizeof 跟 Marshal.SizeOf 的結果可能不同, 例如 struct 型別會針對不同的欄位進行 padding 處理, 導致計算結果不同.