System.IO.Stream.WriteNewLine()

Here are the examples of the csharp api System.IO.Stream.WriteNewLine() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : OperationWriteHelper.cs
with Apache License 2.0
from UglyToad

public static void WriteNumberText(this Stream stream, decimal number, string text)
        {
            stream.WriteDecimal(number);
            stream.WriteWhiteSpace();
            stream.WriteText(text);
            stream.WriteNewLine();
        }