CSharp examples for System.Collections.Generic:ISet
Empty Set
using System.Collections.ObjectModel; using System.Collections.Generic; using System.Collections; public class Main{ public static ICollection<T> EmptySet<T> () {//from w ww.ja va 2 s .c o m return Collections<T>.EMPTY_SET; } }