How to access private methods from one form to another form?
For Example I have this method in Form1:
Form1:
private void Test (){}
Then how to access that method (private void Test) in Form2 so that that values that I entered in Form2 will be sent in the method Test??
Test is a datagridview and in form 2 I have to enter Name with corresponding values in it and if I press the save button, it should be automatically save in the datagridview which in in Form1.