GetLong() 공개 메소드

Gets the 64 bit integer (long) at the current position, and then advances by eight.
public GetLong ( ) : long
리턴 long
예제 #1
0
 public V0Header(int cookie, ByteBuffer buffer)
 {
     Cookie = cookie;
     NumberOfSignificantValueDigits = buffer.GetInt();
     LowestTrackableUnitValue = buffer.GetLong();
     HighestTrackableValue = buffer.GetLong();
     PayloadLengthInBytes = int.MaxValue;
     IntegerToDoubleValueConversionRatio = 1.0;
     NormalizingIndexOffset = 0;
 }
예제 #2
0
 protected override long ReadValue(ByteBuffer sourceBuffer)
 {
     return sourceBuffer.GetLong();
 }