private void button3_Click(object sender, EventArgs e) { int aValue = MyDLLClass.Adder(10, 10); button3.Text = aValue.ToString(); }
static void Main(string[] args) { MyDLLClass.WriteFromDLL("this"); Console.ReadKey(); }