Tidy.Core.OutImpl.Newline C# (CSharp) Method

Newline() public method

public Newline ( ) : void
return void
        public override void Newline()
        {
            try
            {
                byte[] tempSbyteArray = NlBytes;
                Output.Write(tempSbyteArray, 0, tempSbyteArray.Length);
                Output.Flush();
            }
            catch (IOException e)
            {
                Debug.WriteLine("OutImpl.newline: " + e);
            }
        }