File: Microsoft\CSharp\RuntimeBinder\Errors\MessageID.cs
Web Access
Project: src\src\libraries\Microsoft.CSharp\src\Microsoft.CSharp.csproj (Microsoft.CSharp)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.CSharp.RuntimeBinder.Errors
{
    internal enum MessageID
    {
        SK_METHOD,
        SK_CLASS,
        SK_NAMESPACE,
        SK_FIELD,
        SK_PROPERTY,
        SK_UNKNOWN,
        SK_VARIABLE,
        SK_EVENT,
        SK_TYVAR,
        SK_ALIAS,
        ERRORSYM,
        NULL,
        GlobalNamespace,
        MethodGroup,
        AnonMethod,
        Lambda
    }
}