using System; namespace IvfTl.ControlHost { public static class Program { [STAThread] public static int Main(string[] args) { Console.WriteLine("ivf_tl_ControlHost starting, args=" + string.Join(" ", args)); return 0; } } }