Friday, March 5, 2010

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