Hi,
I got my own language binding and all for SharpDevelop. When I run the programs I write in my language (a Matlab/Octave-like language) the screen just pops up and then close again before you have the time to see the result. I'm wondering if it's possible to add a System.Console.ReadKey() or something similar to the Run-command (F5 and Ctrl+F5).
I have also tried to add "Console.ReadKey()" to Start(bool) in my derived class from CompilableProject but then it just compains that I got no console to read from. If I add Console.Read() or Console.ReadLine() the window just pops up and close again.
I can add Console.ReadKey() to the compiled output (using my compiler) but I don't think that's a good solution, since the user probably don't want a Console.ReadKey() in the final product (not even if the final product is in debug mode).
I would prefere if this could be solved by overriding CompilabeProject.Start(bool) or something similar but any ideas are welcome.
Take care,
Finnsson