Files
SlaveMatrix-SDL/2DGAMELIB/System.Diagnostics.CodeAnalysis/AllowNullAttribute.cs
2025-05-07 10:45:18 -07:00

9 lines
218 B
C#

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