D
Denis C
Hi
I have a byte array of length 2404. I want to access
subsets of the array and pass the subset to the
constructor of a class.
i.e.
Dim bData(2403) As Byte
Dim aThing As SomeClass = new SomeClass(bData(12..211))
where bData(12..211) passes bytes 12 to 211 from bData.
Is there some way of doing this?
Denis
I have a byte array of length 2404. I want to access
subsets of the array and pass the subset to the
constructor of a class.
i.e.
Dim bData(2403) As Byte
Dim aThing As SomeClass = new SomeClass(bData(12..211))
where bData(12..211) passes bytes 12 to 211 from bData.
Is there some way of doing this?
Denis