C#中的Char.IsUpper()方法
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
热门推荐
6 保研的祝福语简短
10 年轻20岁祝福语简短
11 朋友结婚祝福语信息简短
12 女孩婚礼贺卡祝福语简短
13 30段点歌简短祝福语
14 虎年春节祝福语图文简短
15 写给后妈祝福语大全简短
16 简短回复生日祝福语
17 校长送毕业祝福语简短
18 毕业立体贺卡祝福语简短