我正在编写正确的代码,但出现错误 - 缺少命名空间或程序集引用。代码有问题还是我遗漏了什么?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication5
{
class Program
{
static void Main(string[] args)
{
int i = 0;
int sum = 0;
int[] arr = new int[] { 1, 2 };
do
{
{
sum += arr[1];
Console.WriteLine("Wow");
i++;
}
}
while (i < 3);
}
}
}
错误是:错误无法使用集合初始化程序初始化类型“int”,因为它没有实现“System.Collections.IEnumerable”