[ Team LiB ] Previous Section Next Section

PackingSizeserializable, flag

System.Reflection.Emit (mscorlib.dll)enum

This enumeration defines the packing size for a type and is set in the ModuleBuilder.DefineType( ) and TypeBuilder.DefineNestedType( ) methods. The digit at the end of each value name in this enumeration specifies a number of bytes.

public enum PackingSize {
   Unspecified = 0x00000000,
   Size1 = 0x00000001,
   Size2 = 0x00000002,
   Size4 = 0x00000004,
   Size8 = 0x00000008,
   Size16 = 0x00000010
}

Hierarchy

System.Object System.ValueType System.Enum(System.IComparable, System.IFormattable, System.IConvertible) PackingSize

Returned By

TypeBuilder.PackingSize

Passed To

ModuleBuilder.DefineType( ), TypeBuilder.DefineNestedType( )

    [ Team LiB ] Previous Section Next Section