2008-03-05 09:52:00 -05:00
|
|
|
// ==++==
|
|
|
|
//
|
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
//
|
|
|
|
// ==--==
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
2008-11-17 18:29:00 -05:00
|
|
|
namespace System.Runtime.InteropServices
|
|
|
|
{
|
2008-03-05 09:52:00 -05:00
|
|
|
// Used in the StructLayoutAttribute class
|
|
|
|
//| <include file='doc\LayoutKind.uex' path='docs/doc[@for="LayoutKind"]/*' />
|
|
|
|
public enum LayoutKind
|
|
|
|
{
|
|
|
|
//| <include file='doc\LayoutKind.uex' path='docs/doc[@for="LayoutKind.Sequential"]/*' />
|
|
|
|
Sequential = 0, // 0x00000008,
|
|
|
|
//| <include file='doc\LayoutKind.uex' path='docs/doc[@for="LayoutKind.Explicit"]/*' />
|
|
|
|
Explicit = 2, // 0x00000010,
|
|
|
|
//| <include file='doc\LayoutKind.uex' path='docs/doc[@for="LayoutKind.Auto"]/*' />
|
|
|
|
Auto = 3, // 0x00000000,
|
|
|
|
}
|
|
|
|
}
|