File: System\Text\RegularExpressions\RegexRunnerFactory.cs | Web Access |
Project: src\src\libraries\System.Text.RegularExpressions\src\System.Text.RegularExpressions.csproj (System.Text.RegularExpressions) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.ComponentModel; namespace System.Text.RegularExpressions { [EditorBrowsable(EditorBrowsableState.Never)] public abstract class RegexRunnerFactory { protected RegexRunnerFactory() { } protected internal abstract RegexRunner CreateInstance(); } } |