Beispiel #1
0
        private void button3_Click(object sender, EventArgs e)
        {
            int aValue = MyDLLClass.Adder(10, 10);

            button3.Text = aValue.ToString();
        }
Beispiel #2
0
        static void Main(string[] args)
        {
            MyDLLClass.WriteFromDLL("this");

            Console.ReadKey();
        }