Possible bug (?): message 'left operand is never null'
Take this code:
public void Test(Type t)
{
string name = t.FullName ?? "unnamed";
}
The text "unnamed" is grayed out and the tooltip "'??' left operand is never null" is shown.
But according to the MSDN documentation, "FullName" can be null.
Please sign in to leave a comment.
Which documentation did you look at? The MSDN documentation clearly states: