C#中如何把int转换成char(数字转换成字符)

这里讨论的是把数字1转换成字符 '1' ,而不是得到ASCII码为1的字符。

int num = 1;

char ch;

ch = char.Parse( num.ToString() );