TerrainDisplay.MpqConsole.WriteLine C# (CSharp) Method

WriteLine() public method

Writes a line to the console
public WriteLine ( string s ) : void
s string String to write
return void
        public void WriteLine(string s)
        {
            Console.WriteLine(s);
        }