LiteNetLib.Utils.NetDataReader.GetUInt C# (CSharp) Method

GetUInt() public method

public GetUInt ( ) : uint
return uint
        public uint GetUInt()
        {
            uint result = BitConverter.ToUInt32(_data, _position);
            _position += 4;
            return result;
        }

Usage Example

コード例 #1
0
 public override void Read(T inf, NetDataReader r)
 {
     Setter(inf, r.GetUInt());
 }
All Usage Examples Of LiteNetLib.Utils.NetDataReader::GetUInt