Click or drag to resize
MatchCollection Class
Represents the set of successful matches found by iteratively applying a regular expression pattern to the input string.
Inheritance Hierarchy
SystemObject
  System.Text.RegularExpressionsMatchCollection

Namespace: System.Text.RegularExpressions
Assembly: CSharpXamlForHtml5.System.dll (in CSharpXamlForHtml5.System.dll.dll) Version: 1.0.0.0
Syntax
C#
public class MatchCollection : ICollection, 
	IEnumerable

The MatchCollection type exposes the following members.

Constructors
  NameDescription
Public methodMatchCollection
Initializes a new instance of the MatchCollection class
Top
Methods
  NameDescription
Public methodCopyTo
Copies all the elements of the collection to the given array starting at the given index.
Public methodEquals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetEnumerator
Provides an enumerator that iterates through the collection.
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Properties
  NameDescription
Public propertyCount
Gets the number of matches.
Public propertyIsSynchronized
Gets a value indicating whether access to the collection is synchronized (thread-safe).
Public propertyItem
Gets an individual member of the collection.
Public propertySyncRoot
Gets an object that can be used to synchronize access to the collection.
Top
See Also