Microsoft.CSharp.RuntimeBinder.Semantics.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,
Expr array,
Expr index);
}
}