/WebThingMain.cs
using System;

namespace bytex64.WebThing {
    public class WebThingMain {
        static WebThing wt;

        public static void Main(string[] args) {
            wt = new WebThing();
            wt.Run();
        }
    }
}