Which of the following is a correct way to convert a String to an int in C#?
Correct Answer: String s = "456"; int i; i = Convert.ToInt32(s);
Explanation:
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
More C# MCQ Questions