summaryrefslogtreecommitdiff
path: root/cs/demo/Ice/nested/Server.cs
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2011-05-09 16:24:52 -0700
committerMark Spruiell <mes@zeroc.com>2011-05-09 16:24:52 -0700
commit5d7de7f8f909d7a4910531a077e514955a1b0fdc (patch)
tree77b437188795dab60de6fbc5212528b0d88c182f /cs/demo/Ice/nested/Server.cs
parentIce 3.4.2 installer updates (diff)
downloadice-5d7de7f8f909d7a4910531a077e514955a1b0fdc.tar.bz2
ice-5d7de7f8f909d7a4910531a077e514955a1b0fdc.tar.xz
ice-5d7de7f8f909d7a4910531a077e514955a1b0fdc.zip
merging .NET Compact Framework support
Diffstat (limited to 'cs/demo/Ice/nested/Server.cs')
-rw-r--r--cs/demo/Ice/nested/Server.cs8
1 files changed, 2 insertions, 6 deletions
diff --git a/cs/demo/Ice/nested/Server.cs b/cs/demo/Ice/nested/Server.cs
index a511a2e96bf..87d3e2aa8d1 100644
--- a/cs/demo/Ice/nested/Server.cs
+++ b/cs/demo/Ice/nested/Server.cs
@@ -39,13 +39,9 @@ public class Server
}
}
- public static void Main(string[] args)
+ public static int Main(string[] args)
{
App app = new App();
- int status = app.main(args, "config.server");
- if(status != 0)
- {
- System.Environment.Exit(status);
- }
+ return app.main(args, "config.server");
}
}