ConfuserEx/Confuser.DynCipher/AST/VariableExpression.cs

11 строки
214 B
C#

using System;
namespace Confuser.DynCipher.AST {
public class VariableExpression : Expression {
public Variable Variable { get; set; }
public override string ToString() {
return Variable.Name;
}
}
}