ABB.Swum.Utilities.LibFileLoader.ReadWordList C# (CSharp) Метод

ReadWordList() публичный статический Метод

Reads a file containing a list of words, and returns it as a set. The file is assumed to contain a single word on each line. Duplicate words will be ignored. Words are converted to lower case before being added.
public static ReadWordList ( ) : HashSet
Результат HashSet
        public static HashSet<string> ReadWordList(params string[] paths)
        {
            return ReadWordList(false, paths);
        }

Same methods

LibFileLoader::ReadWordList ( bool keepOriginalCase ) : HashSet