Server.Network.PacketWriter.Fill C# (CSharp) Méthode

Fill() public méthode

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

Same methods

PacketWriter::Fill ( int length ) : void