Use int and not Int32

This commit is contained in:
de4dot 2013-10-12 01:04:49 +02:00
parent 478595708b
commit b6b0fe5403

View File

@ -29,7 +29,7 @@ namespace AssemblyServer {
public static int Main2(string[] args) {
if (args.Length != 3)
Environment.Exit(1);
var serviceType = (AssemblyServiceType)Int32.Parse(args[0]);
var serviceType = (AssemblyServiceType)int.Parse(args[0]);
var channelName = args[1];
var uri = args[2];