Example #1
0
        static void Main(string[] args)
        {
            Codetotest1 ctt = new Codetotest1();
            int         S   = ctt.adder(4, 5);

            Console.Write("\n\n");
        }
Example #2
0
        public bool test()
        {
            Console.Write("\n  Loading and executing in childAppDomain {0}", childAD.FriendlyName);
            int Sum = code.adder(4, 5);

            if (Sum == 9)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }