示例#1
0
        void useParkingSlot(MarshalSlot mps)
        {
            var str = mps.Load <NoRefsStruct>();

            Print.AsInfo("Int: {0}, Dbl: {1}", str.Int, str.Dbl);

            if ((str.Int != int1 && str.Int != int2) ||
                (str.Dbl != dbl1 && str.Dbl != dbl2))
            {
                Passed = false;
            }
        }