/// <summary> /// Initialzes an IniData instance with a given scheme /// </summary> /// <param name="scheme"></param> public IniData(IniScheme scheme) : this() { _scheme = scheme.DeepClone(); }
public IniDataCaseInsensitive(IniScheme scheme) { Sections = new SectionCollection(StringComparer.OrdinalIgnoreCase); Global = new PropertyCollection(StringComparer.OrdinalIgnoreCase); _scheme = scheme.DeepClone(); }