我正在从MSDN 教程中学习 C# 数组语法。它有这个代码:
// Array-of-arrays (jagged array)
byte[][] scores = new byte[5][];
// Create the jagged array
for (int i = 0; i < scores.Length; i++)
{
scores[i] = new byte[i + 3];
}
// Print length of each row
for (int i = 0; i < scores.Length; i++)
{
Console.WriteLine("Length of row {0} is {1}", i, scores[i].Length);
Console.ReadLine();
}
并说输出是:
Length of row 0 is 3
Length of row 1 is 4
Length of row 2 is 5
Length of row 3 is 6
Length of row 4 is 7
我已将代码复制粘贴到控制台应用程序的主要方法中,我的控制台输出是:
Length of row 0 is 3
任何人都知道为什么我的输出不同?