3 references to SequentialLayout
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)
885case TypeAttributes.SequentialLayout: layoutKind = LayoutKind.Sequential; break;
system\type.cs (1)
1054get {return ((GetAttributeFlagsImpl() & TypeAttributes.LayoutMask) == TypeAttributes.SequentialLayout);}