csharp stringbuilder to file

Code Example - csharp stringbuilder to file

                
                        using (System.IO.StreamWriter file = new System.IO.StreamWriter(@"\hereIam.txt"))
{
    file.WriteLine(sb.ToString()); // "sb" is the StringBuilder
}