OPFService.OPFDictionary.OPFDictionary C# (CSharp) 메소드

OPFDictionary() 공개 메소드

public OPFDictionary ( string path ) : System
path string
리턴 System
        public OPFDictionary(string path)
        {
            string line;
            StreamReader infile = new StreamReader(path);
            words = new Hashtable();
            while ((line = infile.ReadLine()) != null) {
                words.Add(line, true);
            }
            infile.Close();
        }