C#中的Char.IsUpper()方法指示是否将指定的Unicode字符归类为大写字母。
public static bool IsUpper (char ch);
上面的参数ch是要评估的Unicode字符。
现在让我们看一个实现Char.IsUpper()方法的示例-
using System; public class Demo { public static void Main(){ bool res; char val = 'H'; Console.WriteLine("Value = "+val); res = Char.IsUpper(val); Console.WriteLine("Is the value an uppercae letter? = "+res); } }
输出结果
这将产生以下输出-
Value = H Is the value an uppercae letter? = True
现在让我们来看另一个实现IsUpper()
方法的示例-
using System; public class Demo { public static void Main(){ bool res; char val = 'j'; Console.WriteLine("Value = "+val); res = Char.IsUpper(val); Console.WriteLine("Is the value an uppercae letter? = "+res); } }
输出结果
这将产生以下输出-
Value = j Is the value an uppercae letter? = False