dim myb() as byte versus dim myb as byte()

  • Thread starter Thread starter Carly
  • Start date Start date
C

Carly

Hello there,

I wonder what is the difference between declaring array of bytes as:
Dim myb() as Byte

versus

Dim myb as byte()

Thanks,

Carly
 
Carly said:
I wonder what is the difference between declaring array of bytes as:
Dim myb() as Byte

versus

Dim myb as byte()

There is no difference (except in the syntax).
 
Back
Top