Possible Duplicate:
How to escape brackets in a format string in .Net
string.format format string containing {
I was trying to format string like this, {Enum.Enum1,"Enum1String"} I tried this code
foreach (KeyValuePair<int, string> p in Helper.Dict)
            {
               // file.WriteLine(string.Format("{0} | {1}",p.Key,p.Value));
               file.WriteLine(string.Format("{Enum.{0},\"{1}\"}", p.Value,p.Value));
            }
but it doesn not work. How to add { in string format. I am thinking to use stringbuilder.
 
     
     
     
    