Mabby 这是一个愚蠢的问题,但我怎样才能将 int 类型的数字转换为 char 类型的数字?
标准转换 OP 不这样做:
int x = 5;
char myChar = Convert.ToChar(5); // myChar is now a unicode character
char secondChar = (char)x; // again I get a unicode character, not a digit '5'
我需要这个,因为我有一个返回IEnumerable
的方法,我需要以某种方式 Char
返回一个集合。ints
例如:
int[] {1, 2, 3}
转换成
char[] {'1', '2', '3'}
是否可以在 C# 中进行这样的转换?