1 type derived from CSharpVirtualCharService
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\00343610d453c654\CSharpVirtualCharLanguageServiceFactory.cs (1)
25private sealed class CSharpVirtualCharLanguageService : CSharpVirtualCharService, IVirtualCharLanguageService
1 instantiation of CSharpVirtualCharService
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\EmbeddedLanguages\VirtualChars\CSharpVirtualCharService.cs (1)
23public static readonly IVirtualCharService Instance = new CSharpVirtualCharService();
8 references to CSharpVirtualCharService
Microsoft.CodeAnalysis.CSharp.Features (6)
ConvertToRawString\ConvertInterpolatedStringToRawStringCodeRefactoringProvider.cs (1)
57=> CSharpVirtualCharService.Instance.TryConvertToVirtualChars(token);
ConvertToRawString\ConvertRegularStringToRawStringCodeRefactoringProvider.cs (2)
53var characters = CSharpVirtualCharService.Instance.TryConvertToVirtualChars(token); 143var characters = CSharpVirtualCharService.Instance.TryConvertToVirtualChars(token);
EmbeddedLanguages\CSharpEmbeddedLanguagesProvider.cs (1)
24CSharpVirtualCharService.Instance);
EmbeddedLanguages\CSharpTestEmbeddedLanguageClassifier.cs (1)
38var virtualCharsWithMarkup = CSharpVirtualCharService.Instance.TryConvertToVirtualChars(token);
src\roslyn\src\Analyzers\CSharp\Analyzers\SimplifyInterpolation\CSharpSimplifyInterpolationDiagnosticAnalyzer.cs (1)
21protected override IVirtualCharService VirtualCharService => CSharpVirtualCharService.Instance;
Microsoft.CodeAnalysis.Features.ExternalAccess (2)
AspNetCore\EmbeddedLanguages\AspNetCoreCSharpVirtualCharService.cs (2)
19/// <inheritdoc cref="CSharpVirtualCharService.Instance"/> 20public static AspNetCoreCSharpVirtualCharService Instance { get; } = new AspNetCoreCSharpVirtualCharService(CSharpVirtualCharService.Instance);