| 12345678910111213141516171819202122232425 |
- //
- // assembly: System
- // namespace: System.Text.RegularExpressions
- // file: RegexRunnerFactory.cs
- //
- // author: Dan Lewis ([email protected])
- // (c) 2002
- using System;
- using System.ComponentModel;
- namespace System.Text.RegularExpressions {
- /* I'm just guessing that this is the correct place for this
- * attribute, and that the option is correct. It shuts up
- * CorCompare for this undocumented class.
- */
- [EditorBrowsable (EditorBrowsableState.Never)]
- public abstract class RegexRunnerFactory {
- protected RegexRunnerFactory () {
- throw new NotImplementedException ("RegexRunnerFactory is not supported by Mono.");
- }
- protected internal abstract RegexRunner CreateInstance ();
- }
- }
|