2 types derived from CSharpTypeStyleHelper
Microsoft.CodeAnalysis.CSharp.CodeStyle (2)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Utilities\TypeStyle\CSharpUseExplicitTypeHelper.cs (1)
15internal sealed class CSharpUseExplicitTypeHelper : CSharpTypeStyleHelper
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Utilities\TypeStyle\CSharpUseImplicitTypeHelper.cs (1)
21internal sealed class CSharpUseImplicitTypeHelper : CSharpTypeStyleHelper
7 references to CSharpTypeStyleHelper
Microsoft.CodeAnalysis.CSharp.CodeStyle (7)
src\Analyzers\CSharp\Analyzers\UseImplicitOrExplicitType\CSharpTypeStyleDiagnosticAnalyzerBase.cs (4)
37protected abstract CSharpTypeStyleHelper Helper { get; } 76CSharpTypeStyleHelper.Context.BuiltInType => BuiltInTypeProperties, 77CSharpTypeStyleHelper.Context.TypeIsApparent => TypeIsApparentProperties, 78CSharpTypeStyleHelper.Context.Elsewhere => ElsewhereProperties,
src\Analyzers\CSharp\Analyzers\UseImplicitOrExplicitType\CSharpUseExplicitTypeDiagnosticAnalyzer.cs (1)
19protected override CSharpTypeStyleHelper Helper => CSharpUseExplicitTypeHelper.Instance;
src\Analyzers\CSharp\Analyzers\UseImplicitOrExplicitType\CSharpUseImplicitTypeDiagnosticAnalyzer.cs (1)
24protected override CSharpTypeStyleHelper Helper => CSharpUseImplicitTypeHelper.Instance;
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Utilities\TypeStyle\CSharpTypeStyleHelper.cs (1)
26CSharpTypeStyleHelper.Context Context,