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

◆ this[int index]

Oid System.Security.Cryptography.OidCollection.this[int index]
get

Definition at line 12 of file OidCollection.cs.

13 {
14 get
15 {
16 if ((uint)index >= (uint)_count)
17 {
18 throw new ArgumentOutOfRangeException("index");
19 }
20 return _oids[index];
21 }
22 }