jump into file line c#

.net, c#, file-io

Solution

Dim arrText() As String 
Dim lineThreeHundred As String

arrText = File.ReadAllLines("c:\test.txt") 

lineThreeHundred = arrText(299) 

Edit: C# Version

string[] arrText;
string lineThreeHundred;

arrText = File.ReadAllLines("c:\test.txt");
lineThreeHundred = arrText[299];

Problem

how can i jump into some line in my file, e.g line 300 in c:\text.txt?

Original source