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