0
How to read blank line in a text file
i have this code thats read line in a text file bt now wants the same code to read blank line and breaks. string[] line = System.IO.File.ReadAllText(fname).Split('\n'); for (var w = 0; w < line.Length; w++) { var lines = line[w]; }
1 ответ