当前位置: 首页>>代码示例>>C#>>正文


C# ByteBuffer.ToArray方法代码示例

本文整理汇总了C#中System.ByteBuffer.ToArray方法的典型用法代码示例。如果您正苦于以下问题:C# ByteBuffer.ToArray方法的具体用法?C# ByteBuffer.ToArray怎么用?C# ByteBuffer.ToArray使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.ByteBuffer的用法示例。


在下文中一共展示了ByteBuffer.ToArray方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: ConvertKey


//.........这里部分代码省略.........
                        dst += 2;
                        break;

                    case ClassDescriptor.tpChar:
                        buf.Extend(dst + 2);
                        Bytes.Pack2(buf.arr, dst, (v is System.ValueType) ? Convert.ToInt16(((System.ValueType) v)) : (short) ((System.Char) v));
                        dst += 2;
                        break;

                    case ClassDescriptor.tpInt:
                        buf.Extend(dst + 4);
                        Bytes.Pack4(buf.arr, dst, Convert.ToInt32(((System.ValueType) v)));
                        dst += 4;
                        break;

                    case ClassDescriptor.tpObject:
                        buf.Extend(dst + 4);
                        Bytes.Pack4(buf.arr, dst, v == null ? 0 : ((IPersistent) v).Oid);
                        dst += 4;
                        break;

                    case ClassDescriptor.tpLong:
                        buf.Extend(dst + 8);
                        Bytes.Pack8(buf.arr, dst, Convert.ToInt64(((System.ValueType) v)));
                        dst += 8;
                        break;

                    case ClassDescriptor.tpDate:
                        buf.Extend(dst + 8);
                        //UPGRADE_TODO: Method 'java.util.Date.getTime' was converted to 'DateTime.Ticks' which has a different behavior.
                        Bytes.Pack8(buf.arr, dst, v == null ? -1 : ((DateTime) v).Ticks);
                        dst += 8;
                        break;

                    case ClassDescriptor.tpFloat:
                        buf.Extend(dst + 4);
                        float f = (float)v;
                        Bytes.PackF4(buf.arr, dst, f);
                        dst += 4;
                        break;

                    case ClassDescriptor.tpDouble:
                        buf.Extend(dst + 8);
                        double d = (double)v; // TODOPORT: Convert.ToDouble(((System.ValueType) v) ?
                        Bytes.PackF8(buf.arr, dst, d);
                        dst += 8;
                        break;

                    case ClassDescriptor.tpString:
                    {
                        buf.Extend(dst + 4);
                        if (v != null)
                        {
                            string str = (string) v;
                            int len = str.Length;
                            Bytes.Pack4(buf.arr, dst, len);
                            dst += 4;
                            buf.Extend(dst + len * 2);
                            for (int j = 0; j < len; j++)
                            {
                                Bytes.Pack2(buf.arr, dst, (short) str[j]);
                                dst += 2;
                            }
                        }
                        else
                        {
                            Bytes.Pack4(buf.arr, dst, 0);
                            dst += 4;
                        }
                        break;
                    }

                    case ClassDescriptor.tpArrayOfByte:
                    {
                        buf.Extend(dst + 4);
                        if (v != null)
                        {
                            byte[] arr = (byte[]) v;
                            int len = arr.Length;
                            Bytes.Pack4(buf.arr, dst, len);
                            dst += 4;
                            buf.Extend(dst + len);
                            Array.Copy(arr, 0, buf.arr, dst, len);
                            dst += len;
                        }
                        else
                        {
                            Bytes.Pack4(buf.arr, dst, 0);
                            dst += 4;
                        }
                        break;
                    }

                    default:
                        Assert.Failed("Invalid type");
                        break;
                }
            }
            return new Key(buf.ToArray(), key.inclusion != 0);
        }
开发者ID:kjk,项目名称:tenderbase,代码行数:101,代码来源:BtreeMultiFieldIndex.cs

示例2: ExtractKey


//.........这里部分代码省略.........
                            Bytes.Pack4(buf.arr, dst, (int) f.GetValue(obj));
                            dst += 4;
                            break;

                        case ClassDescriptor.tpObject:
                        {
                            IPersistent p = (IPersistent) f.GetValue(obj);
                            int oid = p == null ? 0 : p.Oid;
                            buf.Extend(dst + 4);
                            Bytes.Pack4(buf.arr, dst, oid);
                            dst += 4;
                            break;
                        }

                        case ClassDescriptor.tpLong:
                            buf.Extend(dst + 8);
                            Bytes.Pack8(buf.arr, dst, (long) f.GetValue(obj));
                            dst += 8;
                            break;

                        case ClassDescriptor.tpDate:
                        {
                            DateTime d = (DateTime) f.GetValue(obj);
                            buf.Extend(dst + 8);
                            //UPGRADE_TODO: The 'System.DateTime' structure does not have an equivalent to NULL.
                            //UPGRADE_TODO: Method 'java.util.Date.getTime' was converted to 'DateTime.Ticks' which has a different behavior.
                            Bytes.Pack8(buf.arr, dst, d == null ? -1 : d.Ticks);
                            dst += 8;
                            break;
                        }

                        case ClassDescriptor.tpFloat:
                            buf.Extend(dst + 4);
                            Bytes.PackF4(buf.arr, dst, (float) f.GetValue(obj));
                            dst += 4;
                            break;

                        case ClassDescriptor.tpDouble:
                            buf.Extend(dst + 8);
                            Bytes.PackF8(buf.arr, dst, (double) f.GetValue(obj));
                            dst += 8;
                            break;

                        case ClassDescriptor.tpString:
                        {
                            buf.Extend(dst + 4);
                            string str = (string) f.GetValue(obj);
                            if (str != null)
                            {
                                int len = str.Length;
                                Bytes.Pack4(buf.arr, dst, len);
                                dst += 4;
                                buf.Extend(dst + len * 2);
                                for (int j = 0; j < len; j++)
                                {
                                    Bytes.Pack2(buf.arr, dst, (short) str[j]);
                                    dst += 2;
                                }
                            }
                            else
                            {
                                Bytes.Pack4(buf.arr, dst, 0);
                                dst += 4;
                            }
                            break;
                        }

                        case ClassDescriptor.tpArrayOfByte:
                        {
                            buf.Extend(dst + 4);
                            byte[] arr = (byte[]) f.GetValue(obj);
                            if (arr != null)
                            {
                                int len = arr.Length;
                                Bytes.Pack4(buf.arr, dst, len);
                                dst += 4;
                                buf.Extend(dst + len);
                                Array.Copy(arr, 0, buf.arr, dst, len);
                                dst += len;
                            }
                            else
                            {
                                Bytes.Pack4(buf.arr, dst, 0);
                                dst += 4;
                            }
                            break;
                        }

                        default:
                            Assert.Failed("Invalid type");
                            break;
                    }
                }
                return new Key(buf.ToArray());
            }
            catch (System.Exception x)
            {
                throw new StorageError(StorageError.ACCESS_VIOLATION, x);
            }
        }
开发者ID:kjk,项目名称:tenderbase,代码行数:101,代码来源:BtreeMultiFieldIndex.cs

示例3: CreateCompoundKey

        internal Key CreateCompoundKey(int[] types, string[] values)
        {
            ByteBuffer buf = new ByteBuffer();
            int dst = 0;

            try
            {
                for (int i = 0; i < types.Length; i++)
                {
                    string val = values[i];
                    switch (types[i])
                    {
                        case ClassDescriptor.tpBoolean:
                            buf.Extend(dst + 1);
                            buf.arr[dst++] = (byte) (Int32.Parse(val) != 0 ? 1 : 0);
                            break;

                        case ClassDescriptor.tpByte:
                            buf.Extend(dst + 1);
                            buf.arr[dst++] = (byte) System.SByte.Parse(val);
                            break;

                        case ClassDescriptor.tpChar:
                            buf.Extend(dst + 2);
                            Bytes.Pack2(buf.arr, dst, (short) Int32.Parse(val));
                            dst += 2;
                            break;

                        case ClassDescriptor.tpShort:
                            buf.Extend(dst + 2);
                            Bytes.Pack2(buf.arr, dst, System.Int16.Parse(val));
                            dst += 2;
                            break;

                        case ClassDescriptor.tpInt:
                            buf.Extend(dst + 4);
                            Bytes.Pack4(buf.arr, dst, Int32.Parse(val));
                            dst += 4;
                            break;

                        case ClassDescriptor.tpObject:
                            buf.Extend(dst + 4);
                            Bytes.Pack4(buf.arr, dst, MapId(Int32.Parse(val)));
                            dst += 4;
                            break;

                        case ClassDescriptor.tpLong:
                        case ClassDescriptor.tpDate:
                            buf.Extend(dst + 8);
                            Bytes.Pack8(buf.arr, dst, Int64.Parse(val));
                            dst += 8;
                            break;

                        case ClassDescriptor.tpFloat:
                            buf.Extend(dst + 4);
                            Bytes.PackF4(buf.arr, dst, Single.Parse(val));
                            dst += 4;
                            break;

                        case ClassDescriptor.tpDouble:
                            buf.Extend(dst + 8);
                            Bytes.PackF8(buf.arr, dst, Double.Parse(val));
                            dst += 8;
                            break;

                        case ClassDescriptor.tpString:
                            dst = buf.PackString(dst, val, storage.encoding);
                            break;

                        case ClassDescriptor.tpArrayOfByte:
                            buf.Extend(dst + 4 + (SupportClass.URShift(val.Length, 1)));
                            Bytes.Pack4(buf.arr, dst, SupportClass.URShift(val.Length, 1));
                            dst += 4;
                            for (int j = 0, n = val.Length; j < n; j += 2)
                            {
                                buf.arr[dst++] = (byte) ((GetHexValue(val[j]) << 4) | GetHexValue(val[j + 1]));
                            }
                            break;

                        default:
                            ThrowException("Bad key type");
                            break;
                    }
                }
            }
            catch (FormatException)
            {
                ThrowException("Failed to convert key value");
            }
            return new Key(buf.ToArray());
        }
开发者ID:kjk,项目名称:tenderbase,代码行数:91,代码来源:XMLImporter.cs


注:本文中的System.ByteBuffer.ToArray方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。