natix.CompactDS.OctetStream.Save C# (CSharp) Method

Save() public method

public Save ( BinaryWriter Output ) : void
Output System.IO.BinaryWriter
return void
        public void Save(BinaryWriter Output)
        {
            Output.Write (this.buff.Count);
            PrimitiveIO<byte>.SaveVector (Output, this.buff);
        }