You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: standard/attributes.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -855,17 +855,17 @@ The code-analysis attributes are declared in namespace `System.Diagnostics.CodeA
855
855
856
856
**Attribute** | **Meaning**
857
857
------------------ | ------------------
858
-
``AllowNull`` ([§23.5.7.2](attributes.md#23572-the-allownull-attribute)) | A non-nullable argument may be null.
859
-
``DisallowNull`` ([§23.5.7.3](attributes.md#23573-the-disallownull-attribute)) | A nullable argument should never be null.
860
-
``MaybeNull`` ([§23.5.7.6](attributes.md#23576-the-maybenull-attribute)) | A non-nullable return value may be null.
861
-
``NotNull`` ([§23.5.7.8](attributes.md#23578-the-notnull-attribute)) | A nullable return value will never be null.
862
-
``MaybeNullWhen`` ([§23.5.7.7](attributes.md#23577-the-maybenullwhen-attribute)) | A non-nullable argument may be null when the method returns the specified ``bool`` value.
863
-
``NotNullWhen`` ([§23.5.7.10](attributes.md#235710-the-notnullwhen-attribute)) | A nullable argument won't be null when the method returns the specified ``bool`` value.
864
-
``NotNullIfNotNull`` ([§23.5.7.9](attributes.md#23579-the-notnullifnotnull-attribute)) | A return value isn't null if the argument for the specified parameter isn't null.
865
-
``MemberNotNull`` (§membernotnull-attribute) | The listed member won't be null when the method returns.
866
-
``MemberNotNullWhen`` (§membernotnullwhen-attribute) | The listed member won't be null when the method returns the specified ``bool`` value.
867
-
``DoesNotReturn`` ([§23.5.7.4](attributes.md#23574-the-doesnotreturn-attribute)) | This method never returns.
868
-
``DoesNotReturnIf`` ([§23.5.7.5](attributes.md#23575-the-doesnotreturnif-attribute)) | This method never returns if the associated ``bool`` parameter has the specified value.
858
+
`AllowNull` ([§23.5.7.2](attributes.md#23572-the-allownull-attribute)) | A non-nullable argument may be null.
859
+
`DisallowNull` ([§23.5.7.3](attributes.md#23573-the-disallownull-attribute)) | A nullable argument should never be null.
860
+
`MaybeNull` ([§23.5.7.6](attributes.md#23576-the-maybenull-attribute)) | A non-nullable return value may be null.
861
+
`NotNull` ([§23.5.7.8](attributes.md#23578-the-notnull-attribute)) | A nullable return value will never be null.
862
+
`MaybeNullWhen` ([§23.5.7.7](attributes.md#23577-the-maybenullwhen-attribute)) | A non-nullable argument may be null when the method returns the specified `bool` value.
863
+
`NotNullWhen` ([§23.5.7.10](attributes.md#235710-the-notnullwhen-attribute)) | A nullable argument won't be null when the method returns the specified `bool` value.
864
+
`NotNullIfNotNull` ([§23.5.7.9](attributes.md#23579-the-notnullifnotnull-attribute)) | A return value isn't null if the argument for the specified parameter isn't null.
865
+
`MemberNotNull` (§membernotnull-attribute) | The listed member won't be null when the method returns.
866
+
`MemberNotNullWhen` (§membernotnullwhen-attribute) | The listed member won't be null when the method returns the specified `bool` value.
867
+
`DoesNotReturn` ([§23.5.7.4](attributes.md#23574-the-doesnotreturn-attribute)) | This method never returns.
868
+
`DoesNotReturnIf` ([§23.5.7.5](attributes.md#23575-the-doesnotreturnif-attribute)) | This method never returns if the associated `bool` parameter has the specified value.
869
869
870
870
The following subclauses in [§23.5.7.1](attributes.md#23571-general) are conditionally normative.
0 commit comments