Click here to Skip to main content
15,891,431 members
Articles / Programming Languages / C#

RWWinService - A Simplified .NET 3.5 branch of XYWinService

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
2 Mar 2010CPOL2 min read 13.4K   367   14  
A branch/fork of Xiangyang Liu's XYNTService/XYWinService
/// @file Program.cs
/// @author Ron Wilson

using System;
using RPW.Simple;

namespace RWWinService
{
	class Program
	{
		static void Main(string[] args)
		{
			SimpleService.Worker = new RWWinServiceWorker();
			SimpleService.Start(args);
		}
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader Under Armour
United States United States
I'm your huckleberry.

Check out more beards here.


Comments and Discussions