RegexRunnerFactory.cs 479 B

1234567891011121314151617181920
  1. //
  2. // assembly: System
  3. // namespace: System.Text.RegularExpressions
  4. // file: RegexRunnerFactory.cs
  5. //
  6. // author: Dan Lewis ([email protected])
  7. // (c) 2002
  8. using System;
  9. namespace System.Text.RegularExpressions {
  10. public abstract class RegexRunnerFactory {
  11. protected RegexRunnerFactory () {
  12. throw new NotImplementedException ("RegexRunnerFactory is not supported by Mono.");
  13. }
  14. protected internal abstract RegexRunner CreateInstance ();
  15. }
  16. }