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

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
 
H

Herfried K. Wagner [MVP]

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).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top