public static void AppendTextInFileOurWriter(string text, string path) { using (OurWriter ow = new OurWriter(path)) { ow.Write(text); } }
public static void AppendTextInFile(string text) { OurWriter ourWriter = new OurWriter(FilePath); ourWriter.Write(text); ourWriter.Dispose(); }