skip to main |
skip to sidebar
Dictionary in C#
Dictionary
argumentCollection = commandParser.ParseCommandLineArgument(args);
foreach (KeyValuePair argument in argumentCollection)
{
string value = argument.Value as string;
value = IsStringNullOrEmpty(value)??string.Empty;
string key = argument.Key
}
No comments:
Post a Comment