|
EndianOrderCopyBuffer Method
|
Note: This API is now obsolete.
Copies a buffer in the target endian-order of this
EndianOrder representation.
Namespace: GSFAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.205-beta+5ef4169f3b1079d8b163dd363614f656bd140924
Syntax [ObsoleteAttribute("This method may be removed from future builds",
false)]
public void CopyBuffer(
byte[] sourceBuffer,
int sourceIndex,
byte[] destinationBuffer,
int destinationIndex,
int length
)
[<ObsoleteAttribute("This method may be removed from future builds",
false)>]
member CopyBuffer :
sourceBuffer : byte[] *
sourceIndex : int *
destinationBuffer : byte[] *
destinationIndex : int *
length : int -> unit
function CopyBuffer(sourceBuffer, sourceIndex, destinationBuffer, destinationIndex, length);
View SourceParameters
- sourceBuffer Byte
- The source buffer.
- sourceIndex Int32
- The byte offset into sourceBuffer.
- destinationBuffer Byte
- The destination buffer.
- destinationIndex Int32
- The byte offset into destinationBuffer.
- length Int32
- The number of bytes to copy.
See Also