public static void Main()
Console.WriteLine(string.Format("{0}, {1}, {2}", z, y , x));
x = DoWorK2(ref z, ref y);
Console.WriteLine(string.Format("{0}, {1}, {2}", z, y , x));
Console.WriteLine("test");
public static int DoWorK(int z, int y)
public static int DoWorK2(ref int z, ref int y)