Files
SlaveMatrix-SDL/2DGAMELIB/System.Diagnostics.CodeAnalysis/MaybeNullAttribute.cs
2025-05-05 19:40:03 -07:00

7 lines
245 B
C#

namespace System.Diagnostics.CodeAnalysis;
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter |
AttributeTargets.ReturnValue)]
internal sealed class MaybeNullAttribute : Attribute
{
}