http://www.emgu.com
Merges two byte vector into one
Namespace: Emgu.UtilAssembly: Emgu.Util (in Emgu.Util.dll) Version: 3.0.0.2161 (3.0.0.2161)
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