摘要:
首先,如果不使用这两个关键字,那是什么样 呢?看下面的例子:使用ref:using System; class Test { static void Swap(ref int x, ref int y) { int temp = x; x = y; y = temp; } static void Main() ... 阅读全文
posted @ 2009-12-15 23:34
搏击的小船
阅读(1126)
评论(1)
推荐(0)