System.Security.Cryptography.OidCollection
namespace System.Security.Cryptography
{
public sealed class OidCollection : ICollection, IEnumerable
{
public int Count { get; }
public bool IsSynchronized { get; }
public Oid this[int index] { get; }
public Oid this[string oid] { get; }
public object SyncRoot { get; }
public OidCollection();
public int Add(Oid oid);
public void CopyTo(Oid[] array, int index);
public OidEnumerator GetEnumerator();
}
}