mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-05-06 11:32:59 +00:00
20 lines
513 B
C#
20 lines
513 B
C#
namespace System.Runtime.CompilerServices
|
|
{
|
|
[System.AttributeUsage(
|
|
AttributeTargets.Class |
|
|
AttributeTargets.Delegate |
|
|
AttributeTargets.Interface |
|
|
AttributeTargets.Method |
|
|
AttributeTargets.Struct,
|
|
AllowMultiple = false,
|
|
Inherited = false)]
|
|
public sealed class NullableContextAttribute : Attribute
|
|
{
|
|
public readonly byte Flag;
|
|
public NullableContextAttribute(byte flag)
|
|
{
|
|
Flag = flag;
|
|
}
|
|
}
|
|
}
|