CollectionExtensions.AsReadOnly Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Aşırı Yüklemeler
AsReadOnly<T>(IList<T>) |
Belirtilen liste için salt ReadOnlyCollection<T> okunur bir sarmalayıcı döndürür. |
AsReadOnly<TKey,TValue>(IDictionary<TKey,TValue>) |
Geçerli sözlük için salt ReadOnlyDictionary<TKey,TValue> okunur bir sarmalayıcı döndürür. |
AsReadOnly<T>(IList<T>)
- Kaynak:
- CollectionExtensions.cs
- Kaynak:
- CollectionExtensions.cs
- Kaynak:
- CollectionExtensions.cs
Belirtilen liste için salt ReadOnlyCollection<T> okunur bir sarmalayıcı döndürür.
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ür Parametreleri
- T
Koleksiyondaki öğelerin türü.
Parametreler
- list
- IList<T>
Kaydıracak liste.
Döndürülenler
Geçerli IList<T>çevresinde salt okunur sarmalayıcı işlevi gören bir nesne.
Özel durumlar
list
, null
değeridir.
Şunlara uygulanır
AsReadOnly<TKey,TValue>(IDictionary<TKey,TValue>)
- Kaynak:
- CollectionExtensions.cs
- Kaynak:
- CollectionExtensions.cs
- Kaynak:
- CollectionExtensions.cs
Geçerli sözlük için salt ReadOnlyDictionary<TKey,TValue> okunur bir sarmalayıcı döndürür.
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)
Tür Parametreleri
- TKey
Sözlükteki anahtarların türü.
- TValue
Sözlükteki değerlerin türü.
Parametreler
- dictionary
- IDictionary<TKey,TValue>
Kaydıracak sözlük.
Döndürülenler
Geçerli IDictionary<TKey,TValue>çevresinde salt okunur sarmalayıcı işlevi gören bir nesne.
Özel durumlar
dictionary
, null
değeridir.