Vedo ovunque costruzioni come:
int? myVar = null;
string test = myVar.HasValue ? myVar.Value.ToString() : string.Empty;
Perché non usare semplicemente:
string test = myVar.ToString();
Non è esattamente lo stesso? Almeno Reflector afferma che:
public override string ToString()
{
if (!this.HasValue)
{
return "";
}
return this.value.ToString();
}
Quindi, è corretto (la versione più breve) o mi sto perdendo qualcosa?