UtilClone Method (Byte, Int32, Int32)
|
Clone part of byte array
Namespace:
Guardtime.KSI.Utils
Assembly:
ksi-net-api (in ksi-net-api.dll) Version: 3.11.534.0 (3.11.534.0)
Syntaxpublic static byte[] Clone(
byte[] source,
int startIndex,
int byteCount
)
Public Shared Function Clone (
source As Byte(),
startIndex As Integer,
byteCount As Integer
) As Byte()
public:
static array<unsigned char>^ Clone(
array<unsigned char>^ source,
int startIndex,
int byteCount
)
static member Clone :
source : byte[] *
startIndex : int *
byteCount : int -> byte[]
Parameters
- source
- Type: SystemByte
byte array to be cloned - startIndex
- Type: SystemInt32
source array index to start cloning from - byteCount
- Type: SystemInt32
amount of bytes to clone
Return Value
Type:
Byte
See Also