File: Metadata\MetadataImportFieldOffset.cs
Web Access
Project: src\src\symreader\src\Microsoft.DiaSymReader\Microsoft.DiaSymReader.csproj (Microsoft.DiaSymReader)
// 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.txt file in the project root for more information.

using System.Runtime.InteropServices;

namespace Microsoft.DiaSymReader
{
    [StructLayout(LayoutKind.Sequential)]
    internal struct MetadataImportFieldOffset
    {
        public int FieldDef;
        public uint Offset;
    }
}