diff --git a/Demo.WindowsMobile/Source/Program.cs b/Demo.WindowsMobile/Source/Program.cs new file mode 100644 --- /dev/null +++ b/Demo.WindowsMobile/Source/Program.cs @@ -0,0 +1,19 @@ +using System; + +using System.Collections.Generic; +using System.Windows.Forms; + +namespace Demo.WindowsMobile +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [MTAThread] + static void Main() + { + Application.Run(new MainForm()); + } + } +} \ No newline at end of file