CSharp examples for System.Collections.Generic:IEnumerable
Get Length of IEnumerable
using System.Collections.Generic; using System.Collections; using System;/*from ww w . ja v a 2s .com*/ public class Main{ public static int GetLength(IEnumerable collection) { int ret = 0; if (collection != null) foreach (object o in collection) { ret += 1; } return ret; } }