Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IReadOnlyDictionary.cs
Go to the documentation of this file.
1
using
System.Diagnostics.CodeAnalysis
;
2
3
namespace
System.Collections.Generic
;
4
5
public
interface
IReadOnlyDictionary
<TKey, TValue> :
IReadOnlyCollection
<KeyValuePair<TKey, TValue>>,
IEnumerable
<KeyValuePair<TKey, TValue>>,
IEnumerable
6
{
7
TValue
this
[TKey
key
] {
get
; }
8
9
IEnumerable<TKey>
Keys
{
get
; }
10
11
IEnumerable<TValue>
Values
{
get
; }
12
13
bool
ContainsKey
(TKey
key
);
14
15
bool
TryGetValue
(TKey
key
, [
MaybeNullWhen
(
false
)]
out
TValue
value
);
16
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.Collections.Generic.IEnumerable
Definition
IEnumerable.cs:4
System.Collections.Generic.IReadOnlyCollection
Definition
IReadOnlyCollection.cs:4
System.Collections.Generic.IReadOnlyDictionary.Keys
IEnumerable< TKey > Keys
Definition
IReadOnlyDictionary.cs:9
System.Collections.Generic.IReadOnlyDictionary.ContainsKey
bool ContainsKey(TKey key)
System.Collections.Generic.IReadOnlyDictionary.TryGetValue
bool TryGetValue(TKey key, [MaybeNullWhen(false)] out TValue value)
System.Collections.Generic.IReadOnlyDictionary.Values
IEnumerable< TValue > Values
Definition
IReadOnlyDictionary.cs:11
System.Collections.Generic.IReadOnlyDictionary
Definition
IReadOnlyDictionary.cs:6
System.Collections.Generic
Definition
IHashKeyCollection.cs:1
System.Diagnostics.CodeAnalysis
Definition
AllowNullAttribute.cs:1
System.ExceptionArgument.value
@ value
System.ExceptionArgument.key
@ key
source
System.Private.CoreLib
System.Collections.Generic
IReadOnlyDictionary.cs
Generated by
1.10.0