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