summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Runtime/InteropServices/LayoutKind.cs
blob: 6eed1af0708ff7f68a9f3b3b0614fe88e83787d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
namespace System.Runtime.InteropServices {
    using System;
    // Used in the StructLayoutAttribute class
    [System.Runtime.InteropServices.ComVisible(true)]
    [Serializable]
    public enum LayoutKind
    {
        Sequential      = 0, // 0x00000008,
        Explicit        = 2, // 0x00000010,
        Auto            = 3, // 0x00000000,
    }
}