ImmutableList.Create 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
Create<T>() |
변경할 수 없는 빈 목록을 만듭니다. |
Create<T>(ReadOnlySpan<T>) |
지정된 항목 범위의 항목을 포함하는 변경할 수 없는 새 목록을 만듭니다. |
Create<T>(T) |
지정된 항목이 포함된 변경할 수 없는 새 목록을 만듭니다. |
Create<T>(T[]) |
지정된 항목 배열이 포함된 변경할 수 없는 새 목록을 만듭니다. |
Create<T>()
- Source:
- ImmutableList.cs
- Source:
- ImmutableList.cs
- Source:
- ImmutableList.cs
변경할 수 없는 빈 목록을 만듭니다.
public:
generic <typename T>
static System::Collections::Immutable::ImmutableList<T> ^ Create();
public static System.Collections.Immutable.ImmutableList<T> Create<T> ();
static member Create : unit -> System.Collections.Immutable.ImmutableList<'T>
Public Function Create(Of T) () As ImmutableList(Of T)
형식 매개 변수
- T
변경할 수 없는 목록에 저장할 항목의 형식입니다.
반환
변경할 수 없는 빈 목록입니다.
적용 대상
Create<T>(ReadOnlySpan<T>)
- Source:
- ImmutableList.cs
- Source:
- ImmutableList.cs
지정된 항목 범위의 항목을 포함하는 변경할 수 없는 새 목록을 만듭니다.
public:
generic <typename T>
static System::Collections::Immutable::ImmutableList<T> ^ Create(ReadOnlySpan<T> items);
public static System.Collections.Immutable.ImmutableList<T> Create<T> (ReadOnlySpan<T> items);
static member Create : ReadOnlySpan<'T> -> System.Collections.Immutable.ImmutableList<'T>
Public Function Create(Of T) (items As ReadOnlySpan(Of T)) As ImmutableList(Of T)
형식 매개 변수
- T
컬렉션에 의해 저장되는 항목의 형식입니다.
매개 변수
- items
- ReadOnlySpan<T>
목록을 미리 채워야 하는 항목이 들어 있는 범위입니다.
반환
지정된 항목이 포함된 변경할 수 없는 새 목록입니다.
적용 대상
Create<T>(T)
- Source:
- ImmutableList.cs
- Source:
- ImmutableList.cs
- Source:
- ImmutableList.cs
지정된 항목이 포함된 변경할 수 없는 새 목록을 만듭니다.
public:
generic <typename T>
static System::Collections::Immutable::ImmutableList<T> ^ Create(T item);
public static System.Collections.Immutable.ImmutableList<T> Create<T> (T item);
static member Create : 'T -> System.Collections.Immutable.ImmutableList<'T>
Public Function Create(Of T) (item As T) As ImmutableList(Of T)
형식 매개 변수
- T
변경할 수 없는 목록에 있는 항목의 형식입니다.
매개 변수
- item
- T
목록을 미리 채울 항목입니다.
반환
지정된 항목을 포함하는 새 입니다.
적용 대상
Create<T>(T[])
- Source:
- ImmutableList.cs
- Source:
- ImmutableList.cs
- Source:
- ImmutableList.cs
지정된 항목 배열이 포함된 변경할 수 없는 새 목록을 만듭니다.
public:
generic <typename T>
static System::Collections::Immutable::ImmutableList<T> ^ Create(... cli::array <T> ^ items);
public static System.Collections.Immutable.ImmutableList<T> Create<T> (params T[] items);
static member Create : 'T[] -> System.Collections.Immutable.ImmutableList<'T>
Public Function Create(Of T) (ParamArray items As T()) As ImmutableList(Of T)
형식 매개 변수
- T
변경할 수 없는 목록에 있는 항목의 형식입니다.
매개 변수
- items
- T[]
목록을 미리 채우는 데 사용할 항목이 포함된 배열입니다.
반환
지정된 항목이 포함된 변경할 수 없는 새 목록입니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET