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

GetLong() public method

public GetLong ( ) : long
return long
        public long GetLong()
        {
            long result = BitConverter.ToInt64(_data, _position);
            _position += 8;
            return result;
        }

Usage Example

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