“C Sharp Comment lire un fichier texte” Réponses codées

C Sharp Comment lire un fichier texte

// 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

Comment lire un fichier texte C #

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

Réponses similaires à “C Sharp Comment lire un fichier texte”

Questions similaires à “C Sharp Comment lire un fichier texte”

Plus de réponses similaires à “C Sharp Comment lire un fichier texte” dans C#

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code