CollectionExtensions.AsReadOnly 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
AsReadOnly<T>(IList<T>) |
지정된 목록에 대한 읽기 전용 ReadOnlyCollection<T> 래퍼를 반환합니다. |
AsReadOnly<TKey,TValue>(IDictionary<TKey,TValue>) |
현재 사전에 대한 읽기 전용 ReadOnlyDictionary<TKey,TValue> 래퍼를 반환합니다. |
AsReadOnly<T>(IList<T>)
- Source:
- CollectionExtensions.cs
- Source:
- CollectionExtensions.cs
- Source:
- CollectionExtensions.cs
지정된 목록에 대한 읽기 전용 ReadOnlyCollection<T> 래퍼를 반환합니다.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static System::Collections::ObjectModel::ReadOnlyCollection<T> ^ AsReadOnly(System::Collections::Generic::IList<T> ^ list);
public static System.Collections.ObjectModel.ReadOnlyCollection<T> AsReadOnly<T> (this System.Collections.Generic.IList<T> list);
static member AsReadOnly : System.Collections.Generic.IList<'T> -> System.Collections.ObjectModel.ReadOnlyCollection<'T>
<Extension()>
Public Function AsReadOnly(Of T) (list As IList(Of T)) As ReadOnlyCollection(Of T)
형식 매개 변수
- T
컬렉션에 있는 요소의 형식입니다.
매개 변수
- list
- IList<T>
래핑할 목록입니다.
반환
현재 IList<T>에 대한 읽기 전용 래퍼 역할을 하는 개체입니다.
예외
list
은 null
입니다.
적용 대상
AsReadOnly<TKey,TValue>(IDictionary<TKey,TValue>)
- Source:
- CollectionExtensions.cs
- Source:
- CollectionExtensions.cs
- Source:
- CollectionExtensions.cs
현재 사전에 대한 읽기 전용 ReadOnlyDictionary<TKey,TValue> 래퍼를 반환합니다.
public:
generic <typename TKey, typename TValue>
[System::Runtime::CompilerServices::Extension]
static System::Collections::ObjectModel::ReadOnlyDictionary<TKey, TValue> ^ AsReadOnly(System::Collections::Generic::IDictionary<TKey, TValue> ^ dictionary);
public static System.Collections.ObjectModel.ReadOnlyDictionary<TKey,TValue> AsReadOnly<TKey,TValue> (this System.Collections.Generic.IDictionary<TKey,TValue> dictionary);
static member AsReadOnly : System.Collections.Generic.IDictionary<'Key, 'Value> -> System.Collections.ObjectModel.ReadOnlyDictionary<'Key, 'Value>
<Extension()>
Public Function AsReadOnly(Of TKey, TValue) (dictionary As IDictionary(Of TKey, TValue)) As ReadOnlyDictionary(Of TKey, TValue)
형식 매개 변수
- TKey
사전의 키 형식입니다.
- TValue
사전의 값 형식입니다.
매개 변수
- dictionary
- IDictionary<TKey,TValue>
래핑할 사전입니다.
반환
현재 IDictionary<TKey,TValue>에 대한 읽기 전용 래퍼 역할을 하는 개체입니다.
예외
dictionary
은 null
입니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET