Domanda di colloquio di Santech Solution

How will you convert following integer variable to string? int var1 = 49;

Risposta di colloquio

Anonimo

29 feb 2020

I said: string s = var1.ToString(); He said: string s = Convert.ToString(var1); is better option because it handles NULL as well.