TextFieldParser.ReadToEnd Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Lit le reste du fichier texte et le retourne en tant que chaîne.
public:
System::String ^ ReadToEnd();
public string? ReadToEnd ();
public string ReadToEnd ();
member this.ReadToEnd : unit -> string
Public Function ReadToEnd () As String
Retours
Texte restant du fichier ou du flux.
Exemples
Cet exemple utilise la ReadToEnd
méthode pour lire le fichier ParserText.txt
entier et l’écrire dans le fichier Testfile.txt
.
Using FileReader As New Microsoft.VisualBasic.FileIO.
TextFieldParser("C:\ParserText.txt")
Dim allText As String = FileReader.ReadToEnd
My.Computer.FileSystem.WriteAllText("C://testfile.txt", allText, True)
End Using
S’il Testfile.txt
n’existe pas, il est créé par la WriteAllText
méthode .
Remarques
Il s’agit d’un membre avancé ; elle ne s’affiche pas dans IntelliSense, sauf si vous cliquez sur l’onglet Tout .
S’il n’y a plus rien à lire, car la fin du fichier a été atteinte, Nothing
est retourné.
La ReadToEnd
méthode n’ignore pas les lignes vides et les commentaires.