AlgoLib.Tests.TrieTestsBenchmark.GetWords C# (CSharp) Méthode

GetWords() private méthode

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