hello,
is it possible to copy array 'directly' to global store slot? in this code i want to copy 10 bytes from KPEntryBuffer to global store slot 0
thanks
is it possible to copy array 'directly' to global store slot? in this code i want to copy 10 bytes from KPEntryBuffer to global store slot 0
thanks
B4X:
Dim EnteredPassKeyArr(10) As Byte 'declare temp array
BC.ArrayCopy2(KPEntryBuffer,0,EnteredPassKeyArr,0,10) 'copy to temp array, then put in global store slot
GlobalStore.Put(0,EnteredPassKeyArr)