本文介绍了我有以下代码将十进制值转换为其charcater。但它仅适用于0-255十进制值。我需要它最多10000个值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

public char unicode to Character()
{
int decimal=44;
Byte[] bytes=new byte[2];
bytes[0]=(byte)(decimal);
bytes[1]=0;
int charcount=unicode.GetCharCount(bytes);
har[] chars=new Char[charcount];
chars=unicode.GetChars(bytes);

return chars[0];
}





我的尝试:



以上代码仅适用于十进制值高达255的字符。但我想得到十进制值3516的输出。



What I have tried:

the above code works for only charaters with a decimal value upto 255. But I want to get the output for decimal value 3516.

推荐答案


这篇关于我有以下代码将十进制值转换为其charcater。但它仅适用于0-255十进制值。我需要它最多10000个值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 12:25