Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IOrderedDictionary.cs
Go to the documentation of this file.
1
namespace
System.Collections.Specialized
;
2
3
public
interface
IOrderedDictionary
:
IDictionary
,
ICollection
,
IEnumerable
4
{
5
object
?
this
[
int
index
] {
get
;
set
; }
6
7
new
IDictionaryEnumerator
GetEnumerator
();
8
9
void
Insert
(
int
index
,
object
key
,
object
?
value
);
10
11
void
RemoveAt
(
int
index
);
12
}
System.Collections.ICollection
Definition
ICollection.cs:4
System.Collections.IDictionaryEnumerator
Definition
IDictionaryEnumerator.cs:4
System.Collections.IDictionary
Definition
IDictionary.cs:4
System.Collections.IEnumerable
Definition
IEnumerable.cs:8
System.Collections.Specialized.IOrderedDictionary.Insert
void Insert(int index, object key, object? value)
System.Collections.Specialized.IOrderedDictionary.GetEnumerator
new IDictionaryEnumerator GetEnumerator()
System.Collections.Specialized.IOrderedDictionary.RemoveAt
void RemoveAt(int index)
System.Collections.Specialized.IOrderedDictionary
Definition
IOrderedDictionary.cs:4
System.Collections.Specialized
Definition
CollectionsUtil.cs:1
System.ExceptionArgument.value
@ value
System.ExceptionArgument.key
@ key
System.ExceptionArgument.index
@ index
source
System.Collections.Specialized
System.Collections.Specialized
IOrderedDictionary.cs
Generated by
1.10.0