Concatenation of two views.

Namespace:  C1.LiveLinq.LiveViews
Assembly:  C1.LiveLinq (in C1.LiveLinq.dll)

Syntax

C#
public View<T> Concat(
	IObservableSource<T> second
)
Visual Basic
Public Function Concat ( _
	second As IObservableSource(Of T) _
) As View(Of T)

Parameters

second
Type: C1.LiveLinq..::..IObservableSource<(Of <(<'T>)>)>
A collection (usually, a view) to concatenate to this view's collection of elements.

Return Value

The view that contains first the elements of this view and then the elements of the parameter collection.

See Also