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

◆ RemoveRange() [2/2]

void System.Security.Cryptography.X509Certificates.X509Certificate2Collection.RemoveRange ( X509Certificate2Collection certificates)
inline

Definition at line 249 of file X509Certificate2Collection.cs.

250 {
251 if (certificates == null)
252 {
253 throw new ArgumentNullException("certificates");
254 }
255 int i = 0;
256 try
257 {
258 for (; i < certificates.Count; i++)
259 {
261 }
262 }
263 catch
264 {
265 for (int j = 0; j < i; j++)
266 {
268 }
269 throw;
270 }
271 }

References System.Add, System.Collections.Generic.Dictionary< TKey, TValue >.Count, and System.Security.Cryptography.X509Certificates.X509Certificate2Collection.Remove().