發布時間:2017-08-29 15:12 作者:獨孤劍 閱讀:977
static void Main(string[] args) { string a = "0"; int b = 0; Console.WriteLine("調用函數前"); Console.WriteLine("a: {0}",a); Console.WriteLine("b: {0}", b); Test(ref a, ref b); Console.WriteLine(""); Console.WriteLine("調用函數后"); Console.WriteLine("a: {0}", a); Console.WriteLine("b: {0}", b); Console.Read(); } static void Test(ref string a, ref int b) { a = "001"; b = 100; }
微信打賞, 微信掃一掃
支付寶打賞, 支付寶掃一掃
如果文章對您有幫助,歡迎給作者打賞