There is a Windows Form application for example say 'A'.
and there is another class called 'example.cs' that will call 'A' as apart of its action.
When 'example.cs' calls 'A' , 'A' will pop out, and continue to execute.
what i want to do is, when 'example.cs' calls 'A' , the example.cs code should stop continuing execution until the windows form 'A' is closed.
Hope yourl undestood my question. Basically, i need a form to popup (the form contains a button and a text box), so the user is required to enter some value to the text box and click on the submit button, and then only the example.cs code should continue executing its remaining code.
It is like Console.readline . where the execution of the codes remains still until someone types something in
Help appreciated.