12 Ekim 2013 Cumartesi

Load Text from File to String [C#]

Sponsorlu Bağlantılar
This example shows how to load text file to string variable.

StreamReader

To load text from file to string you can use StreamReader.Re­adToEnd method. First create new instance of StreamReader. As a parameter in constructor you can pass string with file path or Stream instance. Default encoding is UTF-8.
[C#]
using System.IO;

StreamReader streamReader = new StreamReader(filePath);
string text = streamReader.ReadToEnd();
streamReader.Close();

Sponsorlu Bağlantılar

Hiç yorum yok:

Yorum Gönder