StreamReader aa = new StreamReader(filename, Encoding.ASCII); string line = ""; while ((line = aa.ReadLine()) != null) { if (line != "") {
}