读书人

petshop4中的有关问题请指点多谢

发布时间: 2012-01-23 21:57:28 作者: rapoo

petshop4中的问题,请指点,谢谢!
using System;
using PetShop.Model;
using System.Collections.Generic;

namespace PetShop.IDAL{
public interface ICategory {

IList <CategoryInfo> GetCategories();//这里不太明白

CategoryInfo GetCategory(string categoryId)
{
if (string.IsNullOrEmpty(categoryId))
return null;
return dal.GetCategory(categoryId);
}
}
}


IList <CategoryInfo> GetCategories()是什么意思???

[解决办法]
泛型,2005最大特色
[解决办法]
IList <CategoryInfo> GetCategories();
~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~
返回值类型 方法名
泛型容器,存储CategoryInfo对象
[解决办法]
泛型

读书人网 >asp.net

热点推荐