Program.cs 293 B

1234567891011121314
  1. using System;
  2. namespace IvfTl.ControlHost
  3. {
  4. public static class Program
  5. {
  6. [STAThread]
  7. public static int Main(string[] args)
  8. {
  9. Console.WriteLine("ivf_tl_ControlHost starting, args=" + string.Join(" ", args));
  10. return 0;
  11. }
  12. }
  13. }