Returns distinct elements from a sequence by using the default equality comparer to compare values.
Namespace: SequencesAssembly: Sequences (in Sequences.dll) Version: 1.0.1.0 (1.0.1)
Syntax
Parameters
- source
- Type: Sequences ISequence TSource
The sequence to remove duplicate elements from.
Type Parameters
- TSource
- The type of the elements of source.
Return Value
Type: ISequence TSourceA sequence that contains distinct elements from the input sequence.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type ISequence TSource . When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).See Also