Read Text File To String C#

[Solved] Read Text File To String C# | Csharp - Code Explorer | yomemimo.com
Question : c read file into string

Answered by : julesg10

char * buffer = 0;
long length;
FILE * f = fopen (filename, "rb");
if (f)
{ fseek (f, 0, SEEK_END); length = ftell (f); fseek (f, 0, SEEK_SET); buffer = malloc (length); if (buffer) { fread (buffer, 1, length, f); } fclose (f);
}
if (buffer)
{ // start to process your data / extract strings here...
}

Source : https://stackoverflow.com/questions/174531/how-to-read-the-content-of-a-file-to-a-string-in-c | Last Update : Fri, 21 May 21

Answers related to read text file to string c#

Code Explorer Popular Question For Csharp