ACPAddIn.ThisAddIn.writeToFile C# (CSharp) Method

writeToFile() private method

private writeToFile ( String content ) : void
content String
return void
        private void writeToFile(String content)
        {
            content = startTestTime + endTestTime + content;
            Debug.WriteLine(content);

            StreamWriter OurStream;
            using (OurStream = new StreamWriter("C:\\Windows\\Temp\\AutoComPaste\\user_testing.csv"))
            {
                OurStream.Write(content);
            }

            OurStream.Close();
        }