摘要: 1. 值类型private void Form1_Load(object sender, EventArgs e) { int a = 6; //System.int32 long b=5; //System .int64 // b = a; //隐式转换 a = (int)b; //显示转换 // MessageBox.Show(b + ""); MessageBox.Show(a+""); }... 阅读全文
posted @ 2010-03-09 22:49 平凡人生 阅读(337) 评论(0) 推荐(1) 编辑