System.Text.RegularExpressions.CaptureCollection
namespace System.Text.RegularExpressions
{
public class CaptureCollection : ICollection, IEnumerable
{
public int Count { get; }
public bool IsReadOnly { get; }
public bool IsSynchronized { get; }
public Capture this[int i] { get; }
public object SyncRoot { get; }
public void CopyTo(Array array, int arrayIndex);
public IEnumerator GetEnumerator();
}
}