Array.Distinct()
leaves distinct elements. How can I remove all duplicate elements from Array including original one?
For example, given this input array:
{ Dog, Cat, Mouse, Dog, Dog, Parrot, Mouse, Hound }
I'd like to get this output:
{ Cat, Parrot, Hound }