You don't want to use a console application. The reason the Windows forms app will stay open is because it's event driven and waits for the next event where as the console runs sequentially. It's hard to keep the console app open.
I would recommend using an actual Windows Forms application minus the form.
I haven't done a .Net mobile application in a while but a service, if available, could work better for you.
|