String []lines = System.IO.File.ReadAllLines(path);
foreach (String line in lines)
{
line.Trim();
}
Obviously this doesn't work because String.Trim returns the Trimmed version as a new String. And you can't do line = line.Trim(). So is the only way to do this an old-school for loop?
for(int i=0;i<lines.Length;++i)
{
lines[i] = lines[i].Trim();
}
Note I am restricted to Visual Studio 2005 i.e. .Net 2.0
Is the only way to do this an old-school for loop?You can't see it? – Soner Gönül Dec 21 '12 at 13:25is:D – Rudi Visser Dec 21 '12 at 13:26