http://www.emgu.com
Merges two byte vector into one
Namespace:
Emgu.TF.Util
Assembly:
Emgu.TF.Lite.World (in Emgu.TF.Lite.World.dll) Version: 1.13.1.439 (1.13.1.439)
Syntaxpublic static byte[] MergeBytes(
byte[] a,
byte[] b
)
Public Shared Function MergeBytes (
a As Byte(),
b As Byte()
) As Byte()
public:
static array<unsigned char>^ MergeBytes(
array<unsigned char>^ a,
array<unsigned char>^ b
)
static member MergeBytes :
a : byte[] *
b : byte[] -> byte[]
Parameters
- a
- Type: SystemByte
the first byte vector to be merged - b
- Type: SystemByte
the second byte vector to be merged
Return Value
Type:
ByteThe bytes that is a concatenation of a and b
See Also