Initial commit
[mono.git] / mcs / class / referencesource / mscorlib / system / runtime / interopservices / layoutkind.cs
1 // ==++==
2 // 
3 //   Copyright (c) Microsoft Corporation.  All rights reserved.
4 // 
5 // ==--==
6 ////////////////////////////////////////////////////////////////////////////////
7 ////////////////////////////////////////////////////////////////////////////////
8 namespace System.Runtime.InteropServices {
9     using System;
10     // Used in the StructLayoutAttribute class
11     [System.Runtime.InteropServices.ComVisible(true)]
12     [Serializable]
13     public enum LayoutKind
14     {
15         Sequential      = 0, // 0x00000008,
16         Explicit        = 2, // 0x00000010,
17         Auto            = 3, // 0x00000000,
18     }
19 }