[求助]按C#入门上输入的代码,怎么有错啊?(已解决)
我按C#入门经典89页输入的代码:
namespace Ch05Ex06p
{
class Program
{
static void Main(string[] args)
{
int[][]jaggedIntArray;
jaggedIntArray = {new int [] {1,2,3},new int [] {1},new int [] {1,2}}; //说应输入 ;
}
}
}
为什么呢?VS是2005{
class Program
{
static void Main(string[] args)
{
int[][]jaggedIntArray;
jaggedIntArray = {new int [] {1,2,3},new int [] {1},new int [] {1,2}}; //说应输入 ;
}
}
}
书的配套VS2003y有关系吗?
[此贴子已经被作者于2006-7-9 9:52:22编辑过]