コード例 #1
0
 public Variable(string name, string type, VariablesScopes scope)
 {
     Name  = OpenSTAUtils.RenameVariableIfNeccesary(name);
     Type  = type;
     Scope = scope;
 }
コード例 #2
0
ファイル: EndTimer.cs プロジェクト: polarnik/ScriptGenerator
 public EndTimer(string timerName)
 {
     TimerName = OpenSTAUtils.RenameVariableIfNeccesary(timerName);
 }