Table of Contents

Method Concat

Namespace
Alternet.Common
Assembly
Alternet.Common.v9.dll

Concat<T>(IEnumerable<T>, IEnumerable<T>)

Concatenates two sequences.

public static IEnumerable<T> Concat<T>(IEnumerable<T> a, IEnumerable<T> b)

Parameters

a IEnumerable<T>

The first sequence to concatenate.

b IEnumerable<T>

The sequence to concatenate to the first sequence.

Returns

IEnumerable<T>

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

Type Parameters

T

The type of the elements of the input sequences.