1. 소스/// /// INI파일의 파서 /// [ComVisible(true)] [ClassInterface(ClassInterfaceType.None)] public class IniParser : IIniParser { private Hashtable KeyPairs = new Hashtable(); private string IniFilePath = ""; /// /// 대소문자 구분을 하는지의 여부 /// private bool ToCase = false; /// /// INI파일을 오픈했는지의 여부 /// public bool IsOpened = false; [StructLayout(LayoutKind.Sequential, Pack = 1)] private class StringPa..