[This is preliminary documentation and is subject to change.]

Merges two byte vector into one

Namespace:  Emgu.Util
Assembly:  Emgu.Util (in Emgu.Util.dll) Version: 2.0.0.0 (2.0.0.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public 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
)

Parameters

a
array< Byte >[]()[]
the first byte vector to be merged
b
array< Byte >[]()[]
the second byte vector to be merged

Return Value

[Missing <returns> documentation for "M:Emgu.Util.Toolbox.MergeBytes(System.Byte[],System.Byte[])"]

See Also