No olvides que en la informática un problema casi siempre tiene diversas soluciones, no obstante aquí compartiremos lo más óptimo y mejor.
Ejemplo: c# lee el archivo línea por línea
int counter =0;string line;// Read the file and display it line by line. System.IO.StreamReader file =newSystem.IO.StreamReader(@"c:test.txt");while((line = file.ReadLine())!=null)
System.Console.WriteLine(line);
counter++;
file.Close();
System.Console.WriteLine("There were 0 lines.", counter);// Suspend the screen.
System.Console.ReadLine();
valoraciones y comentarios
Ten en cuenta compartir esta división si te fue de ayuda.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)