B4J Question Move Bytes in Array

Blueforcer

Well-Known Member
Licensed User
Longtime User
i have a Array of bytes with a fix length
now i need to take all and move every byte by X places

For example with a move of 2:
Private Header() As Byte = (5,10,15,20,25,30,35)
should be after
Private Header() As Byte = (0,0,5,10,15,20,25)

How can i do that?
 
Top