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