/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Features/CSharp/Portable/ConvertToRawString/ConvertToRawKind.cs
17 строк
480 B
Cyrus Najmabadi
When converting to raw strings, do not change \r\n sequences if not explicitly requested by the user
27 ноя 2024, 22:52
27 ноя 2024, 22:52
6fdddf6
Код
Авторство
О чём код?
// 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.CodeAnalysis.CSharp.ConvertToRawString; [Flags] internal enum ConvertToRawKind { SingleLine = 1 << 0, MultiLineIndented = 1 << 1, MultiLineWithoutLeadingWhitespace = 1 << 2, ContainsEscapedEndOfLineCharacter = 1 << 3, }