C# 中 Char.ToUpperInvariant(Char) 方法
C# 中的 Char.ToUpperInvariant() 方法用于将 Unicode 字符的值转换为其在区域性不敏感的大写形式。
语法
public static char ToUpperInvariant (char ch);
上述参数 ch 是要转换的 Unicode 字符。
现在让我们看一个示例,演示如何实现 Char.ToUpperInvariant() 方法 −
示例
using System; public class Demo { public static void Main(){ char ch = 'q'; char res = Char.ToUpperInvariant(ch); Console.WriteLine("Value = "+ch); Console.WriteLine("Uppercase Equivalent = "+res); } }
输出
将产生以下输出 −
Value = q Uppercase Equivalent = Q
现在让我们看另一个示例 −
示例
using System; public class Demo { public static void Main(){ char ch = 'r'; char res = Char.ToUpperInvariant(ch); Console.WriteLine("Value = "+ch); Console.WriteLine("Uppercase Equivalent = "+res); } }
输出
将产生以下输出 −
Value = r Uppercase Equivalent = R
广告