public int TestOut(int a, out double b, ref string c)
    {
        //------------------------------------------
        DelegateBridge _Hotfix0_TestOut = HotfixCalc.__Hotfix0_TestOut;

        if (_Hotfix0_TestOut != null)
        {
            return(_Hotfix0_TestOut.__Gen_Delegate_Imp16(this, a, out b, ref c));
        }
        //------------------------------------------
        b = a + 2;
        c = "wrong version";
        return(a + 3);
    }