LiteNetLib.Utils.NetDataReader.GetUInt C# (CSharp) Метод

GetUInt() публичный Метод

public GetUInt ( ) : uint
Результат uint
        public uint GetUInt()
        {
            uint result = BitConverter.ToUInt32(_data, _position);
            _position += 4;
            return result;
        }

Usage Example

 public override void Read(T inf, NetDataReader r)
 {
     Setter(inf, r.GetUInt());
 }
All Usage Examples Of LiteNetLib.Utils.NetDataReader::GetUInt