Files
2026-08-27 10:56:38 -06:00

21 lines
471 B
C#

using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
namespace Microsoft.CodeAnalysis.Diagnostics;
public abstract class AnalyzerConfigOptions
{
public static StringComparer KeyComparer { get; } = AnalyzerConfig.Section.PropertiesKeyComparer;
public virtual IEnumerable<string> Keys
{
get
{
throw new NotImplementedException();
}
}
public abstract bool TryGetValue(string key, [NotNullWhen(true)] out string? value);
}