13 lines
320 B
C#
13 lines
320 B
C#
namespace System.Diagnostics.CodeAnalysis
|
|
{
|
|
[AttributeUsage(AttributeTargets.Parameter)]
|
|
internal sealed class NotNullWhenAttribute : Attribute
|
|
{
|
|
public NotNullWhenAttribute(bool returnValue)
|
|
{
|
|
ReturnValue = returnValue;
|
|
}
|
|
|
|
public bool ReturnValue { get; }
|
|
}
|
|
} |