Initial Commit
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
namespace System.Diagnostics.CodeAnalysis;
|
||||
|
||||
[AttributeUsage(AttributeTargets.Parameter)]
|
||||
internal class DoesNotReturnIfAttribute : Attribute
|
||||
{
|
||||
public DoesNotReturnIfAttribute(bool parameterValue)
|
||||
{
|
||||
ParameterValue = parameterValue;
|
||||
}
|
||||
|
||||
public bool ParameterValue { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user