要将指定字符串的值转换为其等效的Unicode字符,代码如下-
using System; public class Demo { public static void Main(){ bool res; Char ch; res = Char.TryParse("10", out ch); Console.WriteLine(res); Console.WriteLine(ch.ToString()); } }
输出结果
这将产生以下输出-
False
现在让我们来看另一个示例-
using System; public class Demo { public static void Main(){ bool res; Char ch; res = Char.TryParse("P", out ch); Console.WriteLine(res); Console.WriteLine(ch.ToString()); } }
输出结果
这将产生以下输出-
True P