SimpleLogger.SimpleLog.ShowLogFile C# (CSharp) Method

ShowLogFile() public static method

Shows the current log file
Opens the default program to show XML files and displays the requested file, if it exists. Does nothing otherwise. A temporary XML file is created and saved in the users's temporary path each time this method is called. So don't use it excessively.
public static ShowLogFile ( ) : void
return void
        public static void ShowLogFile()
        {
            ShowLogFile(DateTime.Now);
        }

Same methods

SimpleLog::ShowLogFile ( System.DateTime dateTime ) : void