我自己测试的结果,随手记,不多说。上代码。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace 形参实参
{
class Program
{
static void Main(string[] args)
{
//a , str ,c 都是实参
//a1 ,str1 ,c1 都是形参
int a = 0;
Console.WriteLine("15行a:"+a);
值类型(a);
Console.WriteLine("调用之后得a:"+a);
String str = "s";
Console.WriteLine("调用前得str:"+str);
引用类型(str);
Console.WriteLine("调用之后的str:"+str);
C c = new C();
c.年龄 = 1;
Console.WriteLine("调用前年龄:"+c.年龄);
引用类型(c);
Console.WriteLine("调用后年龄:" + c.年龄);
Console.ReadKey();
}
/// <summary>