摘要: //#define Testusing System;namespace Wrox.ProCSharp.ParameterTestSample...{ class ParemeterTest...{staticvoid TestInt(int[] ints,int i) ...{ints[0] =100; i =100; } staticvoid TestInt(int[] ints, refint i) ...{ ints[0] =200; i =200; } staticvoid TestInt2(int[] ints, outint i) ...{ ints[0] =300; i =30 阅读全文
posted @ 2013-06-01 23:56 dean.wei 阅读(176) 评论(0) 推荐(0)