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();

Correct Answer: This is a perfectly workable code snippet.

← Previous Question Next Question→

More Questions from Classes and Objects

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion