Writes a
UInt64 to a buffer at a given offset.
Namespace: Couchbase.IO.ConvertersAssembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 2.0.0.0 (2.0.0.0)
Syntaxpublic void FromInt64(
long value,
byte[] buffer,
int offset
)
public void FromInt64(
long value,
byte[] buffer,
int offset
)
Public Sub FromInt64 (
value As Long,
buffer As Byte(),
offset As Integer
)
Public Sub FromInt64 (
value As Long,
buffer As Byte(),
offset As Integer
)
public:
virtual void FromInt64(
long long value,
array<unsigned char>^ buffer,
int offset
) sealed
public:
virtual void FromInt64(
long long value,
array<unsigned char>^ buffer,
int offset
) sealed
abstract FromInt64 :
value : int64 *
buffer : byte[] *
offset : int -> unit
override FromInt64 :
value : int64 *
buffer : byte[] *
offset : int -> unit
abstract FromInt64 :
value : int64 *
buffer : byte[] *
offset : int -> unit
override FromInt64 :
value : int64 *
buffer : byte[] *
offset : int -> unit
Parameters
- value
- Type: System.Int64
The value.
- buffer
- Type:System.Byte[]
The buffer.
- offset
- Type: System.Int32
The offset.
Implements
IByteConverter.FromInt64(Int64,Byte[], Int32)
See Also