ABB.Swum.Utilities.LibFileLoader.ReadWordList C# (CSharp) Method

ReadWordList() public static method

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
return HashSet
        public static HashSet<string> ReadWordList(params string[] paths)
        {
            return ReadWordList(false, paths);
        }

Same methods

LibFileLoader::ReadWordList ( bool keepOriginalCase ) : HashSet