static void Main(string[] args) { MyStruct myStr = new MyStruct(); myStr.x = 5; myStr.y = 3; Test(myStr); }
public static void Test(MyStruct myStr) { myStr.x += 5; myStr.y *= 10; }