Avalon.Utility.Stream.PacketWriter.Fill C# (CSharp) 메소드

Fill() 공개 메소드

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

Same methods

PacketWriter::Fill ( int length ) : void