ExprMethodInfo
namespace Microsoft.CSharp.RuntimeBinder.Semantics
{
internal sealed class ExprMethodInfo : ExprWithType
{
public MethWithInst Method { get; set; }
public ExprMethodInfo(CType type)
: base(ExpressionKind.MethodInfo, type)
{
}
}
}