/// <summary> /// Initializes a new instance of the <see cref="IniValue" /> class. /// </summary> /// <param name="parent">The key/value pair's parent section</param> public IniValue(IniSection parent) { this.Parent = parent; }
/// <summary> /// Initializes a new instance of the <see cref="IniValue" /> class. /// </summary> /// <param name="parent">The key/value pair's parent section</param> /// <param name="name">The key/value pair's key</param> public IniValue(IniSection parent, string name) { this.Parent = parent; this.name = name; }