コード例 #1
0
ファイル: Identifier.cs プロジェクト: alexsubbotin/SD_lab1
 public Identifier(string name, IdentUses identUse, IdentTypes identType)
 {
     Name      = name;
     IdentUse  = identUse;
     IdentType = identType;
 }
コード例 #2
0
ファイル: Variable.cs プロジェクト: alexsubbotin/SD_lab1
 public Variable(string name, IdentUses identUse, IdentTypes identType, object value) : base(name, IdentUses.VARS, identType)
 {
     Value = value;
 }