My program's written in C# and has a GUI in WPF. When one button is clicked, the method StopAndGo() is invoked.
The problem is that I want this method to stop at certain points, wait for user input, and then continue.
I guess this could be done with multithreading, but since I've never studied that topic, I want to be sure that it could be done, and whether it would be hard to accomplish, before studying it.
Can you give me some guidelines on what needs to be done?
Thanks.