TestClient cleanup

This commit is contained in:
Cinder
2022-02-25 19:38:11 -06:00
parent 3fe7b935e7
commit 781a63c307
84 changed files with 385 additions and 408 deletions

View File

@@ -22,11 +22,11 @@ namespace OpenMetaverse.TestClient
}
else if (args.Length > 1)
{
if (Int32.TryParse(args[0], out channel))
if (int.TryParse(args[0], out channel))
startIndex = 1;
}
String message = String.Empty;
string message = string.Empty;
for (int i = startIndex; i < args.Length; i++)
{
@@ -38,7 +38,7 @@ namespace OpenMetaverse.TestClient
Client.Self.Chat(message, channel, ChatType.Normal);
return "Said " + message.ToString();
return "Said " + message;
}
}
}