Pregunta:
How would you acess the eleemts of a text file
Autor: Will ParkerRespuesta:
String filename = "FILENAME.txt"; StreamReader sr = new StreamReader(filename); while ((line = sr.ReadLine()) != null) { line = each line of text file } sr.Close();
0 / 5 (0 calificaciones)
1 answer(s) in total