class MatchCollection
in global :: System . Text . RegularExpressions
Represents the set of successful matches found by iteratively applying a regular expression pattern to the input string.
public void CopyTo( Array array, int arrayIndex )
Copies all the elements of the collection to the given array starting at the given index.
arrayThe array the collection is to be copied into.arrayIndexThe position in the array where copying is to begin.
public void CopyTo( Match[] array, int arrayIndex )
No summary.
public int Count { get; }
Gets the number of matches.
- Returns The number of matches.
public bool IsReadOnly { get; }
Gets a value that indicates whether the collection is read only.
- Returns in all cases.
public bool IsSynchronized { get; }
Gets a value indicating whether access to the collection is synchronized (thread-safe).
- Returns in all cases.
public object SyncRoot { get; }
Gets an object that can be used to synchronize access to the collection.
- Returns An object that can be used to synchronize access to the collection. This property always returns the object itself.
public Match Item { get; }
😔 No documentation found.
public IEnumerator GetEnumerator( )
😔 No documentation found.
public Type GetType( )
😔 No documentation found.
public string ToString( )
😔 No documentation found.
public bool Equals( object obj )
😔 No documentation found.
public int GetHashCode( )
😔 No documentation found.