ConfuserEx/Confuser.DynCipher/AST/ArrayIndexExpression.cs

10 строки
259 B
C#
Исходник Обычный вид История

2014-05-27 15:45:37 +04:00
namespace Confuser.DynCipher.AST {
public class ArrayIndexExpression : Expression {
public Expression Array { get; set; }
public int Index { get; set; }
2014-03-05 20:36:15 +04:00
2014-05-27 15:45:37 +04:00
public override string ToString() {
return string.Format("{0}[{1}]", Array, Index);
}
}
}