我開始了與C#和我創建值從文本流添加到一個數組,並返回數組的方法如下:方法,返回數組
private static string[] getLines(StreamReader myStream)
{
string[] lines;
while (!myStream.EndOfStream)
{
lines = new string[] { myStream.ReadLine() };
}
return lines;
}
我得到一個使用的未分配變量'行'在返回參數中。
在聲明處設置string [] lines = null。 – Akanksha