summaryrefslogtreecommitdiff
path: root/src/mscorlib/shared/System/Runtime/InteropServices/LayoutKind.cs
blob: dbd7ec62d5463e486597d1c7363e88fa7501d122 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

namespace System.Runtime.InteropServices
{
    // Used in the StructLayoutAttribute class
    public enum LayoutKind
    {
        Sequential = 0,
        Explicit = 2,
        Auto = 3,
    }
}