Home »
MCQs »
C# MCQs
Which is the correct method to convert given string in uppercase?
56. Which is the correct method to convert given string in uppercase?
- Upper()
- ToUpper()
- Upr()
- ToUpr()
Answer: B) ToUpper()
Explanation:
The ToUpper() method is used to convert the given string into the uppercase.
Example:
using System;
class Program {
public static void Main() {
string str = "includehelp";
Console.WriteLine(str.ToUpper());
}
}