R
ryu
Hi, May I know how to do an intersection of sets using C#? Where the number
of sets will only be known during runtime. Many Thanks
of sets will only be known during runtime. Many Thanks
ryu said:Hi, May I know how to do an intersection of sets using C#? Where the
number of sets will only be known during runtime. Many Thanks
rk said:If the members of the set are enumerable then they can be represented
by a bitset and anding the bitsets will give the intersection very
easily.