Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IDictionary.cs
Go to the documentation of this file.
1
namespace
System.Collections
;
2
3
public
interface
IDictionary
:
ICollection
,
IEnumerable
4
{
5
object
?
this
[
object
key
] {
get
;
set
; }
6
7
ICollection
Keys
{
get
; }
8
9
ICollection
Values
{
get
; }
10
11
bool
IsReadOnly
{
get
; }
12
13
bool
IsFixedSize
{
get
; }
14
15
bool
Contains
(
object
key
);
16
17
void
Add
(
object
key
,
object
?
value
);
18
19
void
Clear
();
20
21
new
IDictionaryEnumerator
GetEnumerator
();
22
23
void
Remove
(
object
key
);
24
}
System.Collections.ICollection
Definition
ICollection.cs:4
System.Collections.IDictionaryEnumerator
Definition
IDictionaryEnumerator.cs:4
System.Collections.IDictionary.Clear
void Clear()
System.Collections.IDictionary.GetEnumerator
new IDictionaryEnumerator GetEnumerator()
System.Collections.IDictionary.Keys
ICollection Keys
Definition
IDictionary.cs:7
System.Collections.IDictionary.Remove
void Remove(object key)
System.Collections.IDictionary.Add
void Add(object key, object? value)
System.Collections.IDictionary.IsReadOnly
bool IsReadOnly
Definition
IDictionary.cs:11
System.Collections.IDictionary.Contains
bool Contains(object key)
System.Collections.IDictionary.Values
ICollection Values
Definition
IDictionary.cs:9
System.Collections.IDictionary.IsFixedSize
bool IsFixedSize
Definition
IDictionary.cs:13
System.Collections.IDictionary
Definition
IDictionary.cs:4
System.Collections.IEnumerable
Definition
IEnumerable.cs:8
System.Collections
Definition
BlockingCollection.cs:8
System.ExceptionArgument.value
@ value
System.ExceptionArgument.key
@ key
source
System.Private.CoreLib
System.Collections
IDictionary.cs
Generated by
1.10.0