ImmutableArray<T>.Add(T) Method

Definition

Returns a copy of the original array with the specified item added to the end.

public:
 System::Collections::Immutable::ImmutableArray<T> Add(T item);
public System.Collections.Immutable.ImmutableArray<T> Add (T item);
member this.Add : 'T -> System.Collections.Immutable.ImmutableArray<'T>
Public Function Add (item As T) As ImmutableArray(Of T)

Parameters

item
T

The item to be added to the end of the array.

Returns

A new array with the specified item added to the end.

Applies to