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

◆ CopyTo() [2/3]

void System.Security.Cryptography.AsnEncodedDataCollection.CopyTo ( AsnEncodedData[] array,
int index )
inline

Definition at line 84 of file AsnEncodedDataCollection.cs.

85 {
86 if (array == null)
87 {
88 throw new ArgumentNullException("array");
89 }
90 if (index < 0 || index >= array.Length)
91 {
92 throw new ArgumentOutOfRangeException("index", System.SR.ArgumentOutOfRange_Index);
93 }
95 }
void CopyTo(KeyValuePair< TKey, TValue >[] array, int index)
static string ArgumentOutOfRange_Index
Definition SR.cs:30
Definition SR.cs:7

References System.Security.Cryptography.AsnEncodedDataCollection._list, System.SR.ArgumentOutOfRange_Index, System.array, System.Collections.Generic.Dictionary< TKey, TValue >.CopyTo(), and System.index.