I have a dictionary object of type Dictionary
and trying to use StreamWriter to output the entire content to a text file but failed to find the correct method from the Dictionary class.
using (StreamWriter sw = new StreamWriter("myfile.txt"))
{
sw.WriteLine(dictionary.First());
}
I can only retrieve the first element and it is bounded by a square bracket plus a comma separator in between as well:
[Peter, Admin]
and would be nice to have [Peter Admin] (without the comma)