public static SortedSet<T> ToSortedSet<T>(this IEnumerable<T> t) { return new SortedSet<T>(t); }
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)