3 writes to _oids
System.Security.Cryptography (3)
System\Security\Cryptography\OidCollection.cs (3)
16
_oids
= [];
22
_oids
= initialCapacity == 0 ? [] : new Oid[initialCapacity];
30
Array.Resize(ref
_oids
, count == 0 ? 4 : count * 2);
5 references to _oids
System.Security.Cryptography (5)
System\Security\Cryptography\OidCollection.cs (5)
28
if (count ==
_oids
.Length)
32
_oids
[count] = oid;
45
return
_oids
[index];
58
Oid entry =
_oids
[i];
99
Array.Copy(
_oids
, 0, array, index, _count);