Question d’entretien chez Santech Solution

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

Réponse à la question d'entretien

Utilisateur anonyme

29 févr. 2020

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