WikiFunctions.Tools.WriteTextFileAbsolutePath C# (CSharp) Method

WriteTextFileAbsolutePath() public static method

Writes a message to the given file in the specified location.
public static WriteTextFileAbsolutePath ( 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 WriteTextFileAbsolutePath(StringBuilder message, string file, bool append)
        {
            WriteTextFileAbsolutePath(message.ToString(), file, append);
        }

Same methods

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