示例#1
0
 /// <summary>
 /// Gets the int from buffer.
 /// </summary>
 private static unsafe int GetInt(byte[] buf)
 {
     fixed(byte *b = buf)
     {
         return(BinaryHeapStream.ReadInt0(b));
     }
 }