Reputation: 4451
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 or show a Form. Which type of project should I use?
Upvotes: 5
Views: 1881
Reputation: 99957
You can use a Windows project that doesn't show any forms, or you can use a Windows Service project.
Upvotes: 3
Reputation: 9421
Use a windows service template
Add a new project of type 'Windows->Windows Service'.
Here is a walkthrough
Upvotes: 5