System.IO.Stream.WriteUInt8(byte)

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

1 Examples 7

19 Source : ByteBufferEx.cs
with MIT License
from Azure

public static void WritePadding(this Stream stream, byte pad, int length) {
            for (var i = 0; i < length; i++) {
                stream.WriteUInt8(pad);
            }
        }