Code cleanup

This commit is contained in:
2025-03-25 22:03:25 -04:00
parent 26dfac891e
commit a12ba4c931

View File

@@ -5,6 +5,7 @@ namespace MarketData
{
public class CommandArgs : Dictionary<String,NVP>
{
// While the commands are converted to uppercase care must be taken to preserve the case of the arguments.
public CommandArgs(String[] args)
{
@@ -67,7 +68,7 @@ namespace MarketData
catch {result = default(T);}
return result;
}
public T Coalesce<T>(String name)
{
T result=default(T);