mscorlib(4.0.0.0) API with additions
RegexRunnerFactory.cs
2 
4 {
6  [EditorBrowsable(EditorBrowsableState.Never)]
7  public abstract class RegexRunnerFactory
8  {
11  protected internal abstract RegexRunner CreateInstance();
12  }
13 }
Creates a T:System.Text.RegularExpressions.RegexRunner class for a compiled regular expression.
EditorBrowsableState
Specifies the browsable state of a property or method from within an editor.
Definition: __Canon.cs:3
abstract internal RegexRunner CreateInstance()
When overridden in a derived class, creates a T:System.Text.RegularExpressions.RegexRunner object for...
The T:System.Text.RegularExpressions.RegexRunner class is the base class for compiled regular express...
Definition: RegexRunner.cs:7