12 lines
295 B
C#
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; }
|
|
} |