/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/VisualStudio/Core/Impl/Options/Conversions.cs
13 строк
490 B
Jason Malinowski
Move file that's now only being used by the VS layer
25 июн 2026, 21:25
25 июн 2026, 21:25
5c67d40
Код
Авторство
О чём код?
// 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; namespace Microsoft.VisualStudio.LanguageServices.Implementation.Options; internal readonly struct Conversions<TFrom, TTo>(Func<TFrom, TTo> to, Func<TTo, TFrom> from) { public readonly Func<TFrom, TTo> To = to; public readonly Func<TTo, TFrom> From = from; }