/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Features/CSharp/Portable/InlineHints/CSharpInlineHintsService.cs
18 строк
759 B
Cyrus Najmabadi
Add tests
18 дек 2024, 20:06
18 дек 2024, 20:06
87f4542
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Composition; using Microsoft.CodeAnalysis.Host.Mef; using Microsoft.CodeAnalysis.InlineHints; namespace Microsoft.CodeAnalysis.CSharp.InlineHints; /// <summary> /// The service to locate all positions where inline hints should be placed. /// </summary> [ExportLanguageService(typeof(IInlineHintsService), LanguageNames.CSharp), Shared] [method: ImportingConstructor] [method: Obsolete(MefConstruction.ImportingConstructorMessage, error: true)] internal sealed class CSharpInlineHintsService() : AbstractInlineHintsService;