ImmutableArray<T>.AddRange 메서드

정의

오버로드

AddRange(IEnumerable<T>)

지정된 요소가 배열의 끝에 추가된 원래 배열의 복사본을 반환합니다.

AddRange(ImmutableArray<T>)

지정된 요소가 배열의 끝에 추가된 원래 배열의 복사본을 반환합니다.

AddRange(ReadOnlySpan<T>)

이 목록에 지정된 값을 추가합니다.

AddRange(T[])

이 목록에 지정된 값을 추가합니다.

AddRange(ImmutableArray<T>, Int32)

지정된 항목을 배열의 끝에 추가합니다.

AddRange(T[], Int32)

지정된 항목을 배열의 끝에 추가합니다.

AddRange<TDerived>(ImmutableArray<TDerived>)

지정된 항목을 배열의 끝에 추가합니다.

AddRange<TDerived>(TDerived[])

지정된 항목을 배열의 끝에 추가합니다.

AddRange(IEnumerable<T>)

지정된 요소가 배열의 끝에 추가된 원래 배열의 복사본을 반환합니다.

public:
 System::Collections::Immutable::ImmutableArray<T> AddRange(System::Collections::Generic::IEnumerable<T> ^ items);
public System.Collections.Immutable.ImmutableArray<T> AddRange (System.Collections.Generic.IEnumerable<T> items);
member this.AddRange : seq<'T> -> System.Collections.Immutable.ImmutableArray<'T>
Public Function AddRange (items As IEnumerable(Of T)) As ImmutableArray(Of T)

매개 변수

items
IEnumerable<T>

배열에 추가할 요소입니다.

반환

ImmutableArray<T>

요소가 추가된 새 배열입니다.

적용 대상

AddRange(ImmutableArray<T>)

지정된 요소가 배열의 끝에 추가된 원래 배열의 복사본을 반환합니다.

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

매개 변수

items
ImmutableArray<T>

배열에 추가할 요소입니다.

반환

ImmutableArray<T>

요소가 추가된 새 배열입니다.

적용 대상

AddRange(ReadOnlySpan<T>)

이 목록에 지정된 값을 추가합니다.

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

매개 변수

items
ReadOnlySpan<T>

추가할 값입니다.

반환

ImmutableArray<T>

요소가 추가된 새 목록입니다.

적용 대상

AddRange(T[])

이 목록에 지정된 값을 추가합니다.

public:
 System::Collections::Immutable::ImmutableArray<T> AddRange(... cli::array <T> ^ items);
public System.Collections.Immutable.ImmutableArray<T> AddRange (params T[] items);
member this.AddRange : 'T[] -> System.Collections.Immutable.ImmutableArray<'T>
Public Function AddRange (ParamArray items As T()) As ImmutableArray(Of T)

매개 변수

items
T[]

추가할 값입니다.

반환

ImmutableArray<T>

요소가 추가된 새 목록입니다.

적용 대상

AddRange(ImmutableArray<T>, Int32)

지정된 항목을 배열의 끝에 추가합니다.

public:
 System::Collections::Immutable::ImmutableArray<T> AddRange(System::Collections::Immutable::ImmutableArray<T> items, int length);
public System.Collections.Immutable.ImmutableArray<T> AddRange (System.Collections.Immutable.ImmutableArray<T> items, int length);
member this.AddRange : System.Collections.Immutable.ImmutableArray<'T> * int -> System.Collections.Immutable.ImmutableArray<'T>
Public Function AddRange (items As ImmutableArray(Of T), length As Integer) As ImmutableArray(Of T)

매개 변수

items
ImmutableArray<T>

추가할 값입니다.

length
Int32

추가할 원본 배열의 요소 수입니다.

반환

ImmutableArray<T>

요소가 추가된 새 목록입니다.

적용 대상

AddRange(T[], Int32)

지정된 항목을 배열의 끝에 추가합니다.

public:
 System::Collections::Immutable::ImmutableArray<T> AddRange(cli::array <T> ^ items, int length);
public System.Collections.Immutable.ImmutableArray<T> AddRange (T[] items, int length);
member this.AddRange : 'T[] * int -> System.Collections.Immutable.ImmutableArray<'T>
Public Function AddRange (items As T(), length As Integer) As ImmutableArray(Of T)

매개 변수

items
T[]

추가할 값입니다.

length
Int32

추가할 원본 배열의 요소 수입니다.

반환

ImmutableArray<T>

요소가 추가된 새 목록입니다.

적용 대상

AddRange<TDerived>(ImmutableArray<TDerived>)

지정된 항목을 배열의 끝에 추가합니다.

public:
generic <typename TDerived>
 where TDerived : T System::Collections::Immutable::ImmutableArray<T> AddRange(System::Collections::Immutable::ImmutableArray<TDerived> items);
public System.Collections.Immutable.ImmutableArray<T> AddRange<TDerived> (System.Collections.Immutable.ImmutableArray<TDerived> items) where TDerived : T;
member this.AddRange : System.Collections.Immutable.ImmutableArray<#'T> -> System.Collections.Immutable.ImmutableArray<'T>
Public Function AddRange(Of TDerived As T) (items As ImmutableArray(Of TDerived)) As ImmutableArray(Of T)

형식 매개 변수

TDerived

매개 변수

items
ImmutableArray<TDerived>

추가할 값입니다.

반환

ImmutableArray<T>

요소가 추가된 새 목록입니다.

적용 대상

AddRange<TDerived>(TDerived[])

지정된 항목을 배열의 끝에 추가합니다.

public:
generic <typename TDerived>
 where TDerived : T System::Collections::Immutable::ImmutableArray<T> AddRange(cli::array <TDerived> ^ items);
public System.Collections.Immutable.ImmutableArray<T> AddRange<TDerived> (TDerived[] items) where TDerived : T;
member this.AddRange : 'Derived[] -> System.Collections.Immutable.ImmutableArray<'T>
Public Function AddRange(Of TDerived As T) (items As TDerived()) As ImmutableArray(Of T)

형식 매개 변수

TDerived

매개 변수

items
TDerived[]

추가할 값입니다.

반환

ImmutableArray<T>

요소가 추가된 새 목록입니다.

적용 대상