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
热门推荐
10 祝女儿简短祝福语大全
11 大学新年祝福语简短创意
12 元旦适合的祝福语简短
13 朋友出远门祝福语简短
14 初六简短的祝福语
15 祝男孩生日祝福语简短
16 同事调离的祝福语简短
17 拜年红包的祝福语简短
18 妈妈生日祝福语简短励志