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