DarkEmu_LoginServer.PacketWriter2.SetLength C# (CSharp) Method

SetLength() public method

public SetLength ( ) : void
return void
        public void SetLength()
        {
            if (!lenIsSet)
            {
                ms.Position = 0;
                ms.Write(BitConverter.GetBytes(Convert.ToUInt16(ms.Length)), 0, 2);
            }
        }