“C Sharp cómo leer un archivo de texto” Código de respuesta

C Sharp cómo leer un archivo de texto

// To save the text as one string use 'ReadAllText()'
string text = System.IO.File.ReadAllText(@"C:\filepath\file.txt");
// To save each line seperately in an array use 'ReadAllLines()'
string[] lines = System.IO.File.ReadAllLines(@"C:\filepath\file.txt");
SkelliBoi

Cómo leer un archivo de texto C#

string[] text = System.IO.File.ReadAllLines(@"C:\users\username\filepath\file.txt");
Enchanting Earthworm

Respuestas similares a “C Sharp cómo leer un archivo de texto”

Preguntas similares a “C Sharp cómo leer un archivo de texto”

Más respuestas relacionadas con “C Sharp cómo leer un archivo de texto” en C#

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código