/// <summary> /// Writes the specified string value, followed by the current line terminator, to the standard output stream. /// Reads the next character from the standard input stream. /// </summary> /// <param name="msg">The string message to be written to the console.</param> /// <returns>The next character from the input stream, or negative one (-1) if there are currently no more characters to be read.</returns> public int Pause(string msg) { return(ChoConsole.Pause(msg)); }