我在Microsoft Visual Studio 2008 环境下 创建一个 Windows 控制台应用程序,来练习数组的声明和引用。
输入的代码如下:
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication4
{
class Program
{
static void Main(string[] args)
{
int[] my = new my { 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 };
foreach (int my1 in my)
{
Console.WriteLine(my1);
}
Console.ReadKey();
}
}
}
运行调试程序的时候,提示:“找不到类型或命名空间名称‘my’(是否缺少Using指令或程序集引用?)。” 和 “无法使用集合初始值设定项初始化类型为‘my’的对象。”