8 lines
284 B
C#
8 lines
284 B
C#
namespace System.Diagnostics.CodeAnalysis;
|
|
|
|
[AttributeUsage(
|
|
AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter |
|
|
AttributeTargets.ReturnValue, AllowMultiple = true)]
|
|
internal sealed class NotNullAttribute : Attribute
|
|
{
|
|
} |