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

12 lines
295 B
C#

namespace System.Diagnostics.CodeAnalysis;
[AttributeUsage(AttributeTargets.Parameter)]
internal class DoesNotReturnIfAttribute : Attribute
{
public DoesNotReturnIfAttribute(bool parameterValue)
{
ParameterValue = parameterValue;
}
public bool ParameterValue { get; }
}