Microsoft.CSharp.RuntimeBinder.Semantics.PredefinedMethodInfo
namespace Microsoft.CSharp.RuntimeBinder.Semantics
{
internal sealed class PredefinedMethodInfo
{
public PREDEFMETH method;
public PredefinedType type;
public PredefinedName name;
public MethodCallingConventionEnum callingConvention;
public ACCESS access;
public int cTypeVars;
public int[] signature;
public PredefinedMethodInfo(PREDEFMETH method, PredefinedType type, PredefinedName name, MethodCallingConventionEnum callingConvention, ACCESS access, int cTypeVars, int[] signature);
}
}