Page 54 在算数运算中使用字符
namespace CH03
{
class Program
{
static void Main(string[] args)
{
int n = '3' + '4';
char c = (char)n;
System.Console.WriteLine(n);
System.Console.WriteLine(c);
System.Console.ReadKey(true);
}
}
}

浙公网安备 33010602011771号