示例#1
0
        static void Main(string[] args)
        {
            MyStruct myStr = new MyStruct();
            myStr.x = 5;
            myStr.y = 3;

            Test(myStr);
        }
示例#2
0
 public static void Test(MyStruct myStr)
 {
     myStr.x += 5;
     myStr.y *= 10;
 }