随笔分类 -  C#

摘要:Directly using IEnumerator for iterationsEnumerators are used to read data in the collection. The foreach statement hides the complexity of the enumerators, but you can directly manipulate IEnumerator for customized iterations. Let's do an example:Code:List<string> myList =newList<strin 阅读全文
posted @ 2013-01-17 09:59 Qiengo 阅读(337) 评论(0) 推荐(0)