LINQ_Concat()

IEnumerable::LINQ_Concat(SharedPtr<IEnumerable<T>>) method

Concatenates two sequences.

SharedPtr<IEnumerable<Source>> System::Collections::Generic::IEnumerable<Source>::LINQ_Concat(SharedPtr<IEnumerable<T>> sequence)

Arguments

ParameterTypeDescription
sequenceSharedPtr<IEnumerable<T>>The sequence will be concatenated with the current one.

Return Value

An IEnumerable that contains the concatenated elements of the two input sequences.

See Also