/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Compilers/CSharp/Portable/Symbols/EmbeddableAttributes.cs
27 строк
887 B
Jan Jones
Unsafe evolution: use unsafe keyword to denote requires-unsafe members (#83295)
28 апр 2026, 18:16
Не верифицирован
28 апр 2026, 18:16
55acf1f
Код
Авторство
О чём код?
// 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 { [Flags] internal enum EmbeddableAttributes { IsReadOnlyAttribute = 0x01, IsByRefLikeAttribute = 0x02, IsUnmanagedAttribute = 0x04, NullableAttribute = 0x08, NullableContextAttribute = 0x10, NullablePublicOnlyAttribute = 0x20, NativeIntegerAttribute = 0x40, ScopedRefAttribute = 0x80, RefSafetyRulesAttribute = 0x100, RequiresLocationAttribute = 0x200, ParamCollectionAttribute = 0x400, ExtensionMarkerAttribute = 0x800, MemorySafetyRulesAttribute = 0x1000, RequiresUnsafeAttribute = 0x2000, } }