我在 C# 中有一个简单的代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MyProject
{
public static class Class1
{
public static int[] Iparray = new int { 12, 9, 4, 99, 120, 1, 3, 10 };
}
}
但是在(Ctrl++ Shift)B上显示的错误是
Cannot initialize type 'int' with a collection initializer because it does not implement 'System.Collections.IEnumerable'
我正在使用 vs 2010 和 .NET 框架 4
谢谢你们