3 references to AutoLayout
mscorlib (3)
system\reflection\emit\typebuilder.cs (1)
920if (((attr & TypeAttributes.LayoutMask) != TypeAttributes.AutoLayout) &&((attr & TypeAttributes.LayoutMask) != TypeAttributes.SequentialLayout) &&((attr & TypeAttributes.LayoutMask) != TypeAttributes.ExplicitLayout))
system\runtime\interopservices\attributes.cs (1)
884case TypeAttributes.AutoLayout: layoutKind = LayoutKind.Auto; break;
system\type.cs (1)
1050get {return ((GetAttributeFlagsImpl() & TypeAttributes.LayoutMask) == TypeAttributes.AutoLayout);}