3
Answers

Call a method from another method

Camila Piai

Camila Piai

12y
1.3k
1
I'm trying to call a method from another form, but it's not working.
Here's the code:

form1:

public void method1()
{
bla bla bla
}


form2:

form1 frm = new form1();
frm.method1();
Answers (3)