Code Inspection: Multiple nullable attributes usage Last modified: 08 March 2021tipYou 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; }This annotation does not make much sense since the two assertions contradict each other.