I have a Dictionary with some key-value paire stored in it. My problem is that in my dictornary i have a blank space at the start of the key name , so for accessing the value :
Pair[" Key"];
Is there any method in by which i can remove the starting whitespace , so i can access the value like
Pair["Key"]
string.Trim()???? – L.B Jul 14 '12 at 13:52