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

8 lines
284 B
C#

namespace System.Diagnostics.CodeAnalysis;
[AttributeUsage(
AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter |
AttributeTargets.ReturnValue, AllowMultiple = true)]
internal sealed class NotNullAttribute : Attribute
{
}