Here is the code:
Reader r = new Reader();
string s = "b";
string path = @"randomtext.txt";
foreach(string word in Reader.GetWords(path))
{
if (word.StartsWith(s))
{
Console.WriteLine("{0} ", word);
}
}