what is mean by StringDictionary and in what cases it ll be used?? simple example also needed ...
sathish
Select an image from your device to upload
myCol.Add( "red", "rojo" ); myCol.Add( "green", "verde");Console.WriteLine( "Displays the elements in the array:" ); Console.WriteLine( " KEY VALUE" ); for ( int i = 0; i < myArr.Length; i++ ) Console.WriteLine( " {0,-10} {1}", myArr[i].Key, myArr[i].Value ); Console.WriteLine();