本文介绍了跳进文件行C#的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我怎么能跳进一些线在我的文件中,如行300在C:\的text.txt

解决方案

 暗淡arrText()作为字符串
昏暗lineThreeHundred作为字符串

arrText = File.ReadAllLines(C:\ test.txt的)

lineThreeHundred = arrText(299)
 

编辑:C#版本

 的String [] arrText;
串lineThreeHundred;

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

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

解决方案
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];

这篇关于跳进文件行C#的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-22 23:45