[runtime] Fix monitor exception throwing
[mono.git] / mcs / nunit24 / ConsoleRunner / nunit-console-exe / Class1.cs
1 // ****************************************************************\r
2 // This is free software licensed under the NUnit license. You\r
3 // may obtain a copy of the license as well as information regarding\r
4 // copyright ownership at http://nunit.org/?p=license&r=2.4.\r
5 // ****************************************************************\r
6 \r
7 using System;\r
8 \r
9 namespace NUnit.ConsoleRunner\r
10 {\r
11         /// <summary>\r
12         /// Summary description for Class1.\r
13         /// </summary>\r
14         class Class1\r
15         {\r
16                 /// <summary>\r
17                 /// The main entry point for the application.\r
18                 /// </summary>\r
19                 [STAThread]\r
20                 public static int Main(string[] args)\r
21                 {\r
22                         return Runner.Main( args );\r
23                 }\r
24         }\r
25 }\r