首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

aspx.cs文件中为什么不能使用List<>解决方案

2012-03-01 
aspx.cs文件中为什么不能使用List?以下是我引用的命名空间using Systemusing System.Collections.Gener

aspx.cs文件中为什么不能使用List<>?
以下是我引用的命名空间


using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;


为什么不能使用list<> ? 数组却可以

[解决办法]
为什么不能用?有报错页面吗?
using System.Collections.Generic; 
泛型命名空间也是自动导入的啊。。。不明白你的意思

热点排行