コード例 #1
0
 public static object BytesToHLL(byte[] buf, int offset, int len)
 {
     byte[] bytes = new byte[len];
     Array.Copy(buf, offset, bytes, 0, len);
     return(Value.GetAsHLL(bytes));
 }