Example #1
0
 static void Test(HelloWorld world, RefOutParam <int> refValue, RefOutParam <int> outValue)
 {
     refValue.value = 10000;
     outValue.value = 20000;
 }
Example #2
0
 public static void TestFunc4(TestFix testFix, RefOutParam <int> a, RefOutParam <string> b)
 {
     a.value = 500;
     b.value = "hello world!!!!!!!!!!!!hotfix";
     Debug.Log("热补丁" + a.value + "  +  " + b.value);
 }