会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
shysky123
Powered by
博客园
博客园
|
首页
|
新随笔
|
联系
|
订阅
|
管理
2011年12月8日
ref out的用法
摘要: 现在我们要实现交换2个数的值,由于在程序中经常用到,所以封装到函数中代码如下1 /// <summary>2 /// 交换2个数的值3 /// </summary>4 static public void Swap(int x1, int x2)5 {6 int temp = x1;7 x1 = x2;8 x2 = temp;9 }在打印出2个数的值1 static void Main(string[] args)2 {3 int x...
阅读全文
posted @ 2011-12-08 11:09 shysky123
阅读(359)
评论(0)
推荐(0)
编辑