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