转换在 C# 中指定字符串的值为相应的 Unicode 字符


要转换指定字符串的值为其等效的 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

更新于: 11-Dec-2019

291 次浏览

开启您的 职业生涯

完成课程即可获得认证

开始
广告