System [00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00] 1.0.3300.0 1.0.5000.0 2.0.0.0 4.0.0.0 Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details. System.Object System.Collections.ICollection The collection is immutable (read-only) and has no public constructor. The method returns a object. The collection contains zero or more objects. If the match is successful, the collection is populated with one object for each match found in the input string. If the match is unsuccessful, the collection contains no objects, and its property equals zero. When applying a regular expression pattern to a particular input string, the regular expression engine uses either of two techniques to build the object: Direct evaluation. The object is populated all at once, with all matches resulting from a particular call to the method. This technique is used when the collection's property is accessed. It typically is the more expensive method of populating the collection and entails a greater performance hit. Lazy evaluation. The object is populated as needed on a match-by-match basis. It is equivalent to the regular expression engine calling the method repeatedly and adding each match to the collection. This technique is used when the collection is accessed through its method, or when it is accessed using the foreach statement (in C#) or the For Each...Next statement (in Visual Basic). To iterate through the members of the collection, you should use the collection iteration construct provided by your language (such as foreach in C# and For Each…Next in Visual Basic) instead of retrieving the enumerator that is returned by the method. Represents the set of successful matches found by iteratively applying a regular expression pattern to the input string. Method 1.0.5000.0 2.0.0.0 4.0.0.0 System.Void Because the collection is copied into the array starting at the given index, the destination array must be at least as large as the entire collection. This member is not present in the net_portable. If you are developing applications that target the net_portable, use the method instead. Because the object is generally populated by using lazy evaluation, trying to copy the collection before it has been fully populated may throw a exception. This exception can be thrown if a time-out value for matching operations is in effect, and the attempt to find a single match exceeds that time-out interval. Copies all the elements of the collection to the given array starting at the given index. The array the collection is to be copied into. The position in the array where copying is to begin. Property 1.0.5000.0 2.0.0.0 4.0.0.0 System.Int32 To be added: an object of type 'int' Accessing individual members of the object by retrieving the value of the collection's property causes the regular expression engine to populate the collection using direct evaluation. ln contrast, calling the method (or using the foreach statement in C# and the For Each...Next statement in Visual Basic) causes the regular expression engine to populate the collection on an as needed basis using lazy evaluation. Direct evaluation can be a much more expensive method of building the collection than lazy evaluation. Because the object is generally populated by using lazy evaluation, trying to determine the number of elements in the collection before it has been fully populated may throw a exception. This exception can be thrown if a time-out value for matching operations is in effect, and the attempt to find a single match exceeds that time-out interval. Gets the number of matches. Method 1.0.5000.0 2.0.0.0 4.0.0.0 System.Collections.IEnumerator Instead of calling the method to retrieve an enumerator that lets you iterate through the objects in the collection, you should use the group iteration construct (such as foreach in C# and For Each…Next in Visual Basic) provided by your programming language. Iterating the members of the object using the method (or the foreach statement in C# and the For Each...Next statement in Visual Basic) causes the regular expression engine to populate the collection on an as needed basis using lazy evaluation. This is analogous to repeatedly calling the method, and then adding the resulting match to the object. In contrast, the regular expression engine uses direct evaluation to populate the collection all at once when the property is accessed. This can be a much more expensive method of building the collection than lazy evaluation. Because the object is generally populated by using lazy evaluation, trying to navigate to the next member of the collection may throw a exception. This exception can be thrown if a time-out value for matching operations is in effect, and the attempt to find the next match exceeds that time-out interval. Provides an enumerator that iterates through the collection. An object that contains all objects within the . Property 1.0.5000.0 2.0.0.0 4.0.0.0 System.Boolean To be added: an object of type 'bool' To be added Gets a value that indicates whether the collection is read only. Property 1.0.5000.0 2.0.0.0 4.0.0.0 System.Boolean To be added: an object of type 'bool' This member is not present in the net_portable. If you are developing applications that target the net_portable, use the property instead. Gets a value indicating whether access to the collection is synchronized (thread-safe). Property 1.0.5000.0 2.0.0.0 4.0.0.0 System.Text.RegularExpressions.Match To be added. To be added. To be added. To be added. Property 1.0.5000.0 2.0.0.0 4.0.0.0 System.Object To be added: an object of type 'object' This member is not present in the net_portable. If you are developing applications that target the net_portable, use the property instead. Gets an object that can be used to synchronize access to the collection.