D
Dan
Is there a way to place x number of bytes directly into a
structure? Specifically with this structure:
Private Structure HeaderVersion1
Dim intVersion As Int16
Dim intCount As Int16
Dim intSysUptime As Int32
Dim intUnix_Secs As Int32
Dim intUnix_nsecs As Int32
End Structure
Is there an efficient way to read the first 16 bytes from
a byte array into the structure so that the first 2 bytes
= intVersion, the second 2 = int Count, the next 4 =
intSysUptime, etc. Thanks for your input.
Dan
structure? Specifically with this structure:
Private Structure HeaderVersion1
Dim intVersion As Int16
Dim intCount As Int16
Dim intSysUptime As Int32
Dim intUnix_Secs As Int32
Dim intUnix_nsecs As Int32
End Structure
Is there an efficient way to read the first 16 bytes from
a byte array into the structure so that the first 2 bytes
= intVersion, the second 2 = int Count, the next 4 =
intSysUptime, etc. Thanks for your input.
Dan