LittleEndianCopyBytesT(T, Byte, Int32) Method
Copies the specified primitive type value as an array of bytes in the target endian-order to the destination array.
Namespace: GemstoneAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.128 -- Release Build+d050cfc5563c89a1188cc3c6b2d417530856f490
public static int CopyBytes<T>(
T value,
byte[] destinationArray,
int destinationIndex
)
where T : struct, new(), IConvertible
Public Shared Function CopyBytes(Of T As {Structure, New, IConvertible}) (
value As T,
destinationArray As Byte(),
destinationIndex As Integer
) As Integer
public:
generic<typename T>
where T : value class, gcnew(), IConvertible
static int CopyBytes(
T value,
array<unsigned char>^ destinationArray,
int destinationIndex
)
JavaScript does not support generic types or methods.
- value T
- The Boolean value to convert and copy.
- destinationArray Byte
- The destination buffer.
- destinationIndex Int32
- The byte offset into destinationArray.
- T
- Native value type to get bytes for.
Int32Length of bytes copied into array based on size of
T.