Horje
how to read particular line of file in c# Code Example
how to read particular line of file in c#
string GetLine(string fileName, int line)
{
   using (var sr = new StreamReader(fileName)) {
       for (int i = 1; i < line; i++)
          sr.ReadLine();
       return sr.ReadLine();
   }
}




Csharp

Related
unity C# instantiate prefab Code Example unity C# instantiate prefab Code Example
check variable is empty powershell Code Example check variable is empty powershell Code Example
how to make infinite loop in c# Code Example how to make infinite loop in c# Code Example
enum c# Code Example enum c# Code Example
basic auth swagger .net core 5 Code Example basic auth swagger .net core 5 Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10