コード例 #1
0
ファイル: ConfigProperty.cs プロジェクト: ranyaof/Meuhedet
 internal ConfigProperty(ConfigPropertyDefinition propDef, int id, string value)
 {
     this._id = id;
     this._definition = propDef;
     this.SetValue(value);
 }
コード例 #2
0
ファイル: ConfigProperty.cs プロジェクト: ranyaof/Meuhedet
 // Methods
 internal ConfigProperty(ConfigPropertyDefinition propDef, int id)
     : this(propDef, id, null)
 {
 }