Beispiel #1
0
 internal ConfigProperty(ConfigPropertyDefinition propDef, int id, string value)
 {
     this._id = id;
     this._definition = propDef;
     this.SetValue(value);
 }
Beispiel #2
0
 // Methods
 internal ConfigProperty(ConfigPropertyDefinition propDef, int id)
     : this(propDef, id, null)
 {
 }