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

◆ CopyTo() [2/2]

void System.Security.Cryptography.OidCollection.CopyTo ( Oid[] array,
int index )
inline

Definition at line 98 of file OidCollection.cs.

99 {
100 if (array == null)
101 {
102 throw new ArgumentNullException("array");
103 }
104 if (index < 0 || index >= array.Length)
105 {
106 throw new ArgumentOutOfRangeException("index", System.SR.ArgumentOutOfRange_Index);
107 }
108 Array.Copy(_oids, 0, array, index, _count);
109 }
static string ArgumentOutOfRange_Index
Definition SR.cs:30
Definition SR.cs:7

References System.Security.Cryptography.OidCollection._count, System.Security.Cryptography.OidCollection._oids, System.SR.ArgumentOutOfRange_Index, System.array, System.Array.Copy(), and System.index.