LiteNetLib.Utils.NetDataReader.GetLong C# (CSharp) 메소드

GetLong() 공개 메소드

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

Usage Example

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