DarkEmu_GameServer.PacketReader.ReadLword C# (CSharp) Method

ReadLword() public method

public ReadLword ( ) : ulong
return ulong
        public ulong ReadLword()
        {
            fixed (byte* ptr_workspace = workspace)
            {
                ulong tmp = *((ulong*)(ptr_workspace + readIndex));
                readIndex += 8;
                return tmp;
            }
        }