Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ this[TKey key] [2/2]

TValue IDictionary<TKey, TValue>. System.Collections.ObjectModel.ReadOnlyDictionary< TKey, TValue >.this[TKey key]
getsetprivate

Implements System.Collections.Generic.IReadOnlyDictionary< TKey, TValue >.

Definition at line 205 of file ReadOnlyDictionary.cs.

206 {
207 get
208 {
209 return m_dictionary[key];
210 }
211 set
212 {
213 throw new NotSupportedException(System.SR.NotSupported_ReadOnlyCollection);
214 }
215 }
readonly IDictionary< TKey, TValue > m_dictionary
static string NotSupported_ReadOnlyCollection
Definition SR.cs:28
Definition SR.cs:7