|
I've tried hashtableAsString=myHashtable.toString(); burt that throes an error:'toString' is not a member of 'System.Collections.Hashtable' .Any ideas? Cheers
(comments are locked)
|
|
I think you meant myHashtable.ToString() (note the capital T)? However I am not sure the resulting string is what you're after. Hmm yeah that just makes a string like "System.Collections.Hashtable". Any idea how I make a string from the data? Should I just go through the dictionary entries and build it manually I guess?
Mar 13 '11 at 10:34 PM
Grimmy
Yeah. Just go through the contents and use a StringBuilder to create the string (for efficiency).
Mar 13 '11 at 10:47 PM
Statement ♦♦
Mar 13 '11 at 10:47 PM
Statement ♦♦
(comments are locked)
|
