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

12 lines
282 B
C#

namespace System.Diagnostics.CodeAnalysis;
[AttributeUsage(AttributeTargets.Parameter)]
internal sealed class NotNullWhenAttribute : Attribute
{
public NotNullWhenAttribute(bool returnValue)
{
ReturnValue = returnValue;
}
public bool ReturnValue { get; }
}