在某些特殊情況下,我需要一些行前後當前位置c#streamreader文本文件讀取行前/後
例如,
pubic string[] getLines(string value, int linesBefore, int linesAfter){
_streamReader = new StreamReader("file.tmp");
string[] returnValue;
string line = _streamReader.ReadLine();
while (Line.instr() < 0)
{
Line = _streamReader.ReadLine();
}
returnValue = READ "value linesBefore"
+ Line // Current Line
+ READ "value linesAfter"
}
最後3行是我需要的。
有沒有簡單的方法來做到這一點?
謝謝
斯特凡