码迷,mamicode.com
首页 > 编程语言 > 详细

IEnumerable的几个简单用法

时间:2014-11-18 13:08:26      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:style   color   sp   for   on   bs   line   nbsp   c   

IEnumerable<>,它是一个公开枚举数,该枚举数支持在非泛型集合上进行简单的迭代。对于所有数组的遍历,都来自IEnumerable<>,,so我们可以一个遍历数组的通用法。

public static void Print (IEnumerable myList)

{

  int i = 0 ;

  foreach (Object obj in myList)

  {

    if (obj is Student) // 这个是类型的判断,Student 是一个类或者结构

      {

        Student s = (Student) obj ;

        Console.WriteLine() ;

      }

 

  } 

}

IEnumerable的几个简单用法

标签:style   color   sp   for   on   bs   line   nbsp   c   

原文地址:http://www.cnblogs.com/xumaodun/p/4105281.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!