/// <summary> /// Writes the default string value, followed by the current line terminator, to the standard output stream. /// Reads the next line of characters from the standard input stream. /// </summary> /// <param name="msg">The string message to be written to the console.</param> /// <returns>The next line of characters from the input stream, or null if no more lines are available.</returns> public string PauseLine(string msg) { return(ChoConsole.PauseLine(msg)); }