diff --git a/MarketData/MarketData/CommandArgs.cs b/MarketData/MarketData/CommandArgs.cs index 927c77b..0e1fc5d 100644 --- a/MarketData/MarketData/CommandArgs.cs +++ b/MarketData/MarketData/CommandArgs.cs @@ -5,6 +5,7 @@ namespace MarketData { public class CommandArgs : Dictionary { + // 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(String name) { T result=default(T);