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

◆ this[int index]

IdentityReference System.Security.Principal.IdentityReferenceCollection.this[int index]
getset

Definition at line 14 of file IdentityReferenceCollection.cs.

15 {
16 get
17 {
18 return _identities[index];
19 }
20 set
21 {
22 if ((object)value == null)
23 {
24 throw new ArgumentNullException("value");
25 }
27 }
28 }