WikiFunctions.Tools.WriteTextFile C# (CSharp) Method

WriteTextFile() public static method

Writes a message to the given file in the directory of the application.
public static WriteTextFile ( StringBuilder message, string file, bool append ) : void
message StringBuilder The message to write.
file string The name of the file, e.g. "Log.txt".
append bool
return void
        public static void WriteTextFile(StringBuilder message, string file, bool append)
        {
            WriteTextFileAbsolutePath(message.ToString(), Application.StartupPath + DirectoryDelimiter() + file, append);
        }

Same methods

Tools::WriteTextFile ( string message, string file, bool append ) : void
Tools