ExprArrayIndex
namespace Microsoft.CSharp.RuntimeBinder.Semantics
{
internal sealed class ExprArrayIndex : ExprWithType
{
public Expr Array { get; set; }
public Expr Index { get; set; }
public ExprArrayIndex(CType type)
: base(ExpressionKind.ArrayIndex, type)
{
}
}
}