Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
this[int index]
object System.Collections.Specialized.SingleItemReadOnlyList.this[int
index
]
get
set
Implements
System.Collections.IList
.
Definition at line
7
of file
SingleItemReadOnlyList.cs
.
8
{
9
get
10
{
11
if
(
index
!= 0)
12
{
13
throw
new
ArgumentOutOfRangeException(
"index"
);
14
}
15
return
_item
;
16
}
17
set
18
{
19
throw
new
NotSupportedException(
System
.
SR
.
NotSupported_ReadOnlyCollection
);
20
}
21
}
System.Collections.Specialized.SingleItemReadOnlyList._item
readonly object _item
Definition
SingleItemReadOnlyList.cs:5
System.SR.NotSupported_ReadOnlyCollection
static string NotSupported_ReadOnlyCollection
Definition
SR.cs:28
System.SR
Definition
SR.cs:7
System.ExceptionArgument.index
@ index
System
Definition
BlockingCollection.cs:8
System
Collections
Specialized
SingleItemReadOnlyList
Generated by
1.10.0