NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Regex.GroupNameFromNumber

Retrieves a group name that corresponds to a group number.

[Visual Basic]
Public Function GroupNameFromNumber( _
   ByVal i As Integer _
) As String
[C#]
public string GroupNameFromNumber(
   int i
);
[C++]
public: String* GroupNameFromNumber(
   int i
);
[JScript]
public function GroupNameFromNumber(
   i : int
) : String;

Parameters

i
The group number that will be converted to a corresponding group name.

Return Value

The desired group name.

See Also

Regex Class | Regex Members | System.Text.RegularExpressions Namespace