8 lines
267 B
C#
8 lines
267 B
C#
namespace System.Diagnostics.CodeAnalysis
|
|
{
|
|
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter |
|
|
AttributeTargets.ReturnValue)]
|
|
internal sealed class MaybeNullAttribute : Attribute
|
|
{
|
|
}
|
|
} |