JanaGanaMana
Register
Login
File line count
convert string to date yyyymmdd
spam stuff
Safari Books are down
రాక్షసుడు rakshasudu
Spam Emails
static long CountLinesInFile(string f)
{
long count = 0;
using (StreamReader r = new StreamReader(f))
{
string line;
while ((line = r.ReadLine()) != null)
{
count++;
}
}
return count;
}
CountLinesInFile(@"c:\test.txt");