Code inspection: Multiple nullable attributes usageLast modified: 11 February 2024 Category: Common Practices and Code Improvements ID: MultipleNullableAttributesUsage EditorConfig: resharper_multiple_nullable_attributes_usage_highlighting Default severity: Warning Language: C#, VB.NET Requires SWA: NotipYou can suppress this inspection to ignore specific issues, change its severity level to make the issues less or more noticeable, or disable it altogether.NotNull and CanBeNull attributes can be used to indicate whether or not a parameter or a return value can be null. But consider the following code:C#VB.NETpublic void SetName([CanBeNull][NotNull]string name) { myName = name; }Public Sub SetName(<CanBeNull> <NotNull> name As String) myName = name End SubThis annotation does not make much sense since the two assertions contradict each other.