c# 字符串数组赋值 未将对象引用设置到对象的实例
程序代码如下:stringstr;StreamReadersr=newStreamReader();string[][]arr=newstring[50][];inti=...
程序代码如下:
string str;
StreamReader sr = new StreamReader();
string[][] arr=new string[50][];
int i = 0;
while (!string.IsNullOrEmpty(sr.ReadLine()))
{
str = sr.ReadLine();
string[] temp = str.Split(' ');
for (int j = 0; j < temp.Length; j++)
{
arr[i][j] = temp[j];//这里是出错位置!!!未将对象引用设置到对象的实例
Console.WriteLine(temp[i]);
}
i++;
}
txt文档如下: 展开
string str;
StreamReader sr = new StreamReader();
string[][] arr=new string[50][];
int i = 0;
while (!string.IsNullOrEmpty(sr.ReadLine()))
{
str = sr.ReadLine();
string[] temp = str.Split(' ');
for (int j = 0; j < temp.Length; j++)
{
arr[i][j] = temp[j];//这里是出错位置!!!未将对象引用设置到对象的实例
Console.WriteLine(temp[i]);
}
i++;
}
txt文档如下: 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询