asp.net2.0(petshop4.0)返回值问题
发布网友
发布时间:2022-04-22 09:00
我来回答
共2个回答
热心网友
时间:2022-04-11 08:38
int id=100;
IList<companyEntity> entity=getcompanyinfo(id);
if(entity.Count>0)
{
//取值 赋值
}
热心网友
时间:2022-04-11 09:56
IList就是列表接口,支持插入删除和Foreach循环
而这个IList存储的值就是他的泛型类
比如
IList<companyEntity> companys = getcompanyinfo(id);
foreach( companyEntity Entity in companys)
{
Response.Write(Entity.Id);
}