RegexRunnerFactory.cs 722 B

12345678910111213141516171819202122232425
  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. using System.ComponentModel;
  10. namespace System.Text.RegularExpressions {
  11. /* I'm just guessing that this is the correct place for this
  12. * attribute, and that the option is correct. It shuts up
  13. * CorCompare for this undocumented class.
  14. */
  15. [EditorBrowsable (EditorBrowsableState.Never)]
  16. public abstract class RegexRunnerFactory {
  17. protected RegexRunnerFactory () {
  18. throw new NotImplementedException ("RegexRunnerFactory is not supported by Mono.");
  19. }
  20. protected internal abstract RegexRunner CreateInstance ();
  21. }
  22. }