static void Main(string[] args)
{
                           int i = 1; Test(i); Console.WriteLine(i);//这里想将i变成5,不知道怎么写
                   } public static void Test(int a)
{
a = 5;
return;
}