CSharp examples for System.Collections.Generic:IEnumerable
Clone IEnumerable
using System.Collections.Generic; public class Main{ public static ICollection<T> Clone<T>(IEnumerable<T> items) {//from ww w . j ava2 s . c o m return new List<T>(items); } }