S
shapper
Hello,
I have the following:
1 Dim bRows As Byte()
2 sRows.Read(bRows, 0, Integer.MaxValue)
On line 2 I get an warning saying:
"Variable bRows is used before it has been assigner a value"
How can I solve this?
And what is the difference between using:
Dim bRows As Byte()
And:
Dim bRows() As Byte
Thanks,
Miguel
I have the following:
1 Dim bRows As Byte()
2 sRows.Read(bRows, 0, Integer.MaxValue)
On line 2 I get an warning saying:
"Variable bRows is used before it has been assigner a value"
How can I solve this?
And what is the difference between using:
Dim bRows As Byte()
And:
Dim bRows() As Byte
Thanks,
Miguel