File: System\Reflection\Runtime\General\IRuntimeMemberInfoWithNoMetadataDefinition.cs
Web Access
Project: src\src\runtime\src\coreclr\nativeaot\System.Private.CoreLib\src\System.Private.CoreLib.csproj (System.Private.CoreLib)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

namespace System.Reflection.Runtime.General
{
    // This interface's presence on a MemberInfo testates that
    //
    //    1. The MemberInfo implemented by Reflection.Core
    //    2. Is to be lumped into the "no metadata token" group for the purposes
    //       of the HasSameMetadataDefinitionAs() api.
    //
    internal interface IRuntimeMemberInfoWithNoMetadataDefinition
    {
    }
}