Sequence.Union<TSource> Method (ISequence<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>)A Sandcastle Documented Class Library

Namespace: Sequences
Assembly: Sequences (in Sequences.dll) Version: 1.0.1.0 (1.0.1)
Syntax
public static ISequence<TSource> Union<TSource>(
	this ISequence<TSource> first,
	IEnumerable<TSource> second,
	IEqualityComparer<TSource> comparer
)

Parameters

first
Type: Sequences.ISequence<TSource>
A sequence whose distinct elements form the first set for the union.
second
Type: System.Collections.Generic.IEnumerable<TSource>
A sequence whose distinct elements form the second set for the union.
comparer
Type: System.Collections.Generic.IEqualityComparer<TSource>
The IEqualityComparer<T> to compare values.
Type Parameters
TSource
The type of the elements of the input sequences.

Return Value

Type: ISequence<TSource>

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