Home » C# Programming » Classes and Objects

Which of the following statements is correct about the C#.NET code snippet given below? int i; int j = new int(); i = 10; j = 20; String str; str = i.ToString(); str = j.ToString();

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!