AlgoLib.Tests.TrieTestsBenchmark.GetWords C# (CSharp) Method

GetWords() private method

Returns distinct set of words. This method returns 58110 English words.
private GetWords ( ) : IEnumerable
return IEnumerable
        private IEnumerable<string> GetWords()
        {
            var path = Path.Combine(TestContext.DeploymentDirectory, VocabularyPath);
            return File.ReadAllLines(path);
        }