摘要: static void Main(string[] args) { //out test int a, b; //out使用前,变量可以不赋值 outTest(out a, out b); Console.WriteLine("a={0};b={1}", a, b); int c = 11, d = 22; outTest(out c, out d); Console.WriteLine("... 阅读全文
posted @ 2013-07-30 16:34 柏拉图的永恒 阅读(206) 评论(0) 推荐(0) 编辑