'宣言 Public ReadOnly Property IsReadOnly As System.Boolean
'使用法 Dim instance As OrderedDictionary(Of TKey,TValue) Dim value As System.Boolean value = instance.IsReadOnly
public System.bool IsReadOnly {get;}
'宣言 Public ReadOnly Property IsReadOnly As System.Boolean
'使用法 Dim instance As OrderedDictionary(Of TKey,TValue) Dim value As System.Boolean value = instance.IsReadOnly
public System.bool IsReadOnly {get;}
A collection that is read-only is simply a collection with a wrapper that prevents modification of the collection; therefore, if changes are made to the underlying collection, the read-only collection reflects those changes.