







[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Overload List
Name | Description | |
---|---|---|
![]() ![]() | ReadOnly<(Of <T>)>(ICollection<(Of <T>)>) |
Returns a read-only view onto a collection. The returned ICollection<T> interface
only allows operations that do not change the collection: GetEnumerator, Contains, CopyTo,
Count. The ReadOnly property returns false, indicating that the collection is read-only. All other
methods on the interface throw a NotSupportedException.
|
![]() ![]() | ReadOnly<(Of <TKey, TValue>)>(IDictionary<(Of <TKey, TValue>)>) |
Returns a read-only view onto a dictionary. The returned IDictionary<TKey,TValue> interface
only allows operations that do not change the dictionary.
The IsReadOnly property returns true, indicating that the dictionary is read-only. All other
methods on the interface throw a NotSupportedException.
|
![]() ![]() | ReadOnly<(Of <T>)>(IList<(Of <T>)>) |
Returns a read-only view onto a list. The returned IList<T> interface
only allows operations that do not change the list: GetEnumerator, Contains, CopyTo,
Count, IndexOf, and the get accessor of the indexer.
The IsReadOnly property returns true, indicating that the list is read-only. All other
methods on the interface throw a NotSupportedException.
|