Avalon.Utility.Stream.PacketWriter.Fill C# (CSharp) Method

Fill() public method

Fills the stream from the current position up to (capacity) with 0x00's
public Fill ( ) : void
return void
        public void Fill()
        {
            Fill((int)(m_Capacity - m_Stream.Length));
        }

Same methods

PacketWriter::Fill ( int length ) : void