Example #1
0
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
            var p = new TestDll.Class1();

            p.call_main();
        }
Example #2
0
        private void button1_Click(object sender, EventArgs e)
        {
            TestDll.Class1 C = new TestDll.Class1();

            string Test = C.AStringMethod();

            MessageBox.Show("Test");
        }