CSharpUtils.Streams.ZeroStream.ZeroStream C# (CSharp) Method

ZeroStream() public method

public ZeroStream ( long Size, byte ValueToRepeat = 0x00 ) : System
Size long
ValueToRepeat byte
return System
        public ZeroStream(long Size, byte ValueToRepeat = 0x00)
        {
            this._Size = Size;
            this.Position = 0;
            this.ValueToRepeat = ValueToRepeat;
        }