Added user deletion

Refactored project warnings
This commit is contained in:
Lucio Maranta
2019-04-05 11:20:56 +02:00
parent 830221b178
commit f30403560c
32 changed files with 523 additions and 284 deletions
+2 -3
View File
@@ -95,11 +95,10 @@ namespace Client.Config
private static ushort ValidateServerPort(String value)
{
ushort Port;
if (ushort.TryParse(value, out Port))
if (ushort.TryParse(value, out ushort Port))
return Port;
else
throw new Exception(@"Configuration Error: ""Connection - ServerPort"" is not a valid Id of CMS-Client");
throw new Exception(@"Configuration Error: ""Connection - ServerPort"" is not a valid Id of CMS-Client");
}