} // Read public static uint Read(this NativeReader reader, uint offset, out ConstantInt64ValueHandle handle) { uint value; offset = reader.DecodeUnsigned(offset, out value); handle = new ConstantInt64ValueHandle((int)value); handle._Validate(); return offset; } // Read
} // Read public static uint Read(this NativeReader reader, uint offset, out ConstantInt64ValueHandle[] values) { uint count; offset = reader.DecodeUnsigned(offset, out count); if (count == 0) { values = s_emptyConstantInt64ValueHandleArray; } else { values = new ConstantInt64ValueHandle[count]; for (uint i = 0; i < count; ++i) { ConstantInt64ValueHandle tmp; offset = reader.Read(offset, out tmp); values[i] = tmp; } } return offset; } // Read
} // IsNull internal bool IsNull(ConstantInt64ValueHandle handle) { return (handle._value & 0x00FFFFFF) == 0; } // IsNull
} // ToHandle internal Handle ToHandle(ConstantInt64ValueHandle handle) { return new Handle(handle._value); } // ToHandle
} // GetConstantInt64Array public ConstantInt64Value GetConstantInt64Value(ConstantInt64ValueHandle handle) { var record = new ConstantInt64Value() { _reader = this, _handle = handle }; var offset = (uint)handle.Offset; offset = _streamReader.Read(offset, out record._value); return record; } // GetConstantInt64Value
} // Equals public bool Equals(ConstantInt64ValueHandle handle) { return _value == handle._value; } // Equals
} // Read public static uint Read(this NativeReader reader, uint offset, out ConstantInt64ValueHandle[] values) { uint count; offset = reader.DecodeUnsigned(offset, out count); #if !NETFX_45 if (count == 0) { values = Array.Empty<ConstantInt64ValueHandle>(); } else #endif { values = new ConstantInt64ValueHandle[count]; for (uint i = 0; i < count; ++i) { ConstantInt64ValueHandle tmp; offset = reader.Read(offset, out tmp); values[i] = tmp; } } return offset; } // Read