Application running in background
How can I write C# application using Visual Studio 2010 that runs in background? By this I mean that it does not run in console o开发者_JAVA百科r show a Form. Which type of project should I use?
Use a windows service template
Add a new project of type 'Windows->Windows Service'.
Here is a walkthrough
You can use a Windows project that doesn't show any forms, or you can use a Windows Service project.
精彩评论