A
Arash_89
Guest
Hello,
How can I fix the following code?
Thanks
IEnumerable<IEnumerable<T>> ReturnSomething<T>()
{
HashSet<HashSet<T>> hs = new HashSet<HashSet<T>> {
new HashSet<T>{1,2,3,4,5},
new HashSet<T>{6,7,8,9,10},
new HashSet<T>{11,12,13,14,15}
};
return hs;
}
Continue reading...
How can I fix the following code?
Thanks
IEnumerable<IEnumerable<T>> ReturnSomething<T>()
{
HashSet<HashSet<T>> hs = new HashSet<HashSet<T>> {
new HashSet<T>{1,2,3,4,5},
new HashSet<T>{6,7,8,9,10},
new HashSet<T>{11,12,13,14,15}
};
return hs;
}
Continue reading...