I have done this thousands of times and cannot figure for the life of me why the StreamReader below is throwing this error. Running Visual Studios 2010 and .Net 4.0. Its old stuff but its never given me issues before.
var listOfEmailss = new List<string>();
string emailFrom = email.Text.Trim();
string pass = password.Text.Trim();
StreamReader tr = new StreamReader(@"âĒC:\Users\Tom\Desktop\emailTest.txt");
string line = "";
while ((line = tr.ReadLine()) != null)
{
listOfEmailss.Add(line.Split(',').Last().Trim());
}