C# Tips

Today's C# Quiz

Quiz

Which of the following variables cannot have NULL?

string s;
var i = new Nullable();
int? x;
System.ConsoleColor c;

Tip

Answer