public static void testIfElse()
        {
            double d; string s; int n; bool b;
            var    r1 = new VarWrap(2.2);
            var    r2 = new VarWrap(2.2),
                   r4 = new VarWrap(2.2),
                   r5 = new VarWrap(2.2);

            if (true)
            {
                d = r1.get();
                r1.set("hi");
                s = r1.get();

                d = r2.get();
                r2.set("hi");
                s = r2.get();
            }
            else
            {
                d = r1.get();
                r1.set(0);
                n = r1.get();

                d = r4.get();
                r4.set(0);
                n = r4.get();
            }
            s = r1.get() + "3";
            d = r4.get();
            d = r5.get();
        }
        public void testThisIfElse()
        {
            double d; string s; int n; bool b;

            attribute1 = new VarWrap(2.2);
            attribute2 = new VarWrap(2.2);
            attribute3 = new VarWrap(2.2);
            attribute4 = new VarWrap(2.2);

            if (true)
            {
                d = attribute1.get();
                attribute1.set("hi");
                s = attribute1.get();

                d = attribute2.get();
                attribute2.set("hi");
                s = attribute2.get();
            }
            else
            {
                d = attribute1.get();
                attribute1.set(0);
                n = attribute1.get();

                d = attribute3.get();
                attribute3.set(0);
                n = attribute3.get();
            }
            s = attribute1.get() + "3";
            d = attribute3.get();
            d = attribute4.get();
        }
        public static void testIf()
        {
            double d; string s; int n; bool b;
            var    r1 = new VarWrap(2);
            var    r2 = new VarWrap(2);

            if (true)
            {
                n = r1.get();
                r1.set(3.3);
                d = r1.get();
            }
            n = r2.get();
            d = r1.get();
        }