diff --git a/LibreMetaverse.Types/UtilsConversions.cs b/LibreMetaverse.Types/UtilsConversions.cs
index 407daeca..576092ec 100644
--- a/LibreMetaverse.Types/UtilsConversions.cs
+++ b/LibreMetaverse.Types/UtilsConversions.cs
@@ -809,10 +809,8 @@ namespace OpenMetaverse
const int numA = 65;
const int num0 = 48;
- int numChar;
-
c = char.ToUpper(c);
- numChar = Convert.ToInt32(c);
+ var numChar = Convert.ToInt32(c);
if (numChar >= numA && numChar < (numA + 6))
return true;
diff --git a/Programs/GridProxy/GridProxy.cs b/Programs/GridProxy/GridProxy.cs
index 254e244e..b72c4e17 100644
--- a/Programs/GridProxy/GridProxy.cs
+++ b/Programs/GridProxy/GridProxy.cs
@@ -96,6 +96,7 @@ namespace GridProxy
/// Email address of the proxy application's author
/// An array containing the parameters to use to override the proxy
/// servers default settings
+ /// Does what it says on the tin
public ProxyConfig(string userAgent, string author, string[] args, bool exitOnError)
: this(userAgent, author)
{
diff --git a/Programs/examples/TestClient/ClientManager.cs b/Programs/examples/TestClient/ClientManager.cs
index f8a71a84..9e5e3dd7 100644
--- a/Programs/examples/TestClient/ClientManager.cs
+++ b/Programs/examples/TestClient/ClientManager.cs
@@ -264,7 +264,6 @@ namespace OpenMetaverse.TestClient
///
///
///
- ///
public void DoCommandAll(string cmd, UUID fromAgentID)
{
if (cmd == null)
diff --git a/Programs/examples/TestClient/Commands/Inventory/DumpOutfitCommand.cs b/Programs/examples/TestClient/Commands/Inventory/DumpOutfitCommand.cs
index 62c9a1a0..23c81f8a 100644
--- a/Programs/examples/TestClient/Commands/Inventory/DumpOutfitCommand.cs
+++ b/Programs/examples/TestClient/Commands/Inventory/DumpOutfitCommand.cs
@@ -1,4 +1,4 @@
-/**
+/*
* Copyright (c) 2006-2016, openmetaverse.co
* Copyright (c) 2021-2022, Sjofn LLC.
* All rights reserved.
diff --git a/Programs/examples/TestClient/Commands/Inventory/UploadImageCommand.cs b/Programs/examples/TestClient/Commands/Inventory/UploadImageCommand.cs
index 6a6ba192..1f2b27cf 100644
--- a/Programs/examples/TestClient/Commands/Inventory/UploadImageCommand.cs
+++ b/Programs/examples/TestClient/Commands/Inventory/UploadImageCommand.cs
@@ -1,4 +1,4 @@
-/**
+/*
* Copyright (c) 2006-2016, openmetaverse.co
* Copyright (c) 2021-2022, Sjofn LLC.
* All rights reserved.
diff --git a/Programs/examples/TestClient/Program.cs b/Programs/examples/TestClient/Program.cs
index 6e6d5edb..dea3cf76 100644
--- a/Programs/examples/TestClient/Program.cs
+++ b/Programs/examples/TestClient/Program.cs
@@ -8,7 +8,7 @@ namespace OpenMetaverse.TestClient
[Serializable]
public class CommandLineArgumentsException : Exception
{
- public CommandLineArgumentsException() : base()
+ public CommandLineArgumentsException()
{
}
diff --git a/Programs/examples/TestClient/TestClient.cs b/Programs/examples/TestClient/TestClient.cs
index 64fee94f..212f404e 100644
--- a/Programs/examples/TestClient/TestClient.cs
+++ b/Programs/examples/TestClient/TestClient.cs
@@ -130,8 +130,8 @@ namespace OpenMetaverse.TestClient
///
/// Initialize everything that needs to be initialized once we're logged in.
///
- /// The status of the login
- /// Error message on failure, MOTD on success.
+ ///
+ ///
public void LoginHandler(object sender, LoginProgressEventArgs e)
{
if (e.Status == LoginStatus.Success)