1: private void TestFun(Byte[] Temb) 2: 3: { 4: 5: Temb[0] = 20; 6: 7: byte[] TemBB = { 8, 9, 10, 11 }; 8: 9: Temb = TemBB; 10: 11: } 12: 13: private void button1_Click(object sender, EventArgs e) 14: 15: { 16: 17: Byte[] TemBa = { 1, 2 }; 18: 19: TestFun(TemBa); 20: 21: Debug.WriteLine(TemBa[0]); . Read More
posted @ 2011-06-11 11:04 CanY Views(7266) Comments(0) Diggs(2) Edit