예제 #1
0
 public KeyValueItem(string key, string value, ConfigItem parent = null)
     : base(key, parent)
 {
     this.Value = value;
 }
예제 #2
0
 public NamespaceItem(string key, ConfigItem parent = null)
     : base(key, parent)
 {
     this.Children = new SortedDictionary <string, ConfigItem>(StringComparer.InvariantCultureIgnoreCase);
 }
예제 #3
0
 public KeyValueItem(string key, ConfigItem parent = null)
     : this(key, string.Empty, parent)
 {
 }