ExprMultiGet
namespace Microsoft.CSharp.RuntimeBinder.Semantics
{
internal sealed class ExprMultiGet : ExprWithType
{
public ExprMulti OptionalMulti { get; set; }
public ExprMultiGet(CType type)
: base(ExpressionKind.MultiGet, type)
{
}
}
}