mountain

IEnumerable 接口

http://msdn.microsoft.com/zh-cn/library/system.collections.ienumerable%28v=VS.100%29.aspx

 

公开枚举器,该枚举器支持在非泛型集合上进行简单迭代。

命名空间:  System.Collections
程序集:  mscorlib(在 mscorlib.dll 中)

 

 IEnumerable<String> studentQuery2 =               
from student in app.students
where student.ID > 111
select
student.Last;

posted on 2010-09-17 10:31  Moutnainer  阅读(112)  评论(0)    收藏  举报

导航