G
Guest
Hello, I have a question I'm hoping someone can clarify for me. My question
regards the declaration of a variable/ array variable. Anyhow, I was
wondering if someone can explain the following declaration to me:
Dim sendBytes as [Byte]( ) = Encoding.ASCII.GetBytes("Is anybody
listening...")
It looks like type byte is an array. Is this correct? Also, what do the
brackets represent? I tried finding some type of explanation but is
unsuccessful. Would the following syntax be an alternative?
Dim sendBytes as Byte( ) = Encoding.ASCII.GetBytes("Is anybody listening...")
Thanks,
regards the declaration of a variable/ array variable. Anyhow, I was
wondering if someone can explain the following declaration to me:
Dim sendBytes as [Byte]( ) = Encoding.ASCII.GetBytes("Is anybody
listening...")
It looks like type byte is an array. Is this correct? Also, what do the
brackets represent? I tried finding some type of explanation but is
unsuccessful. Would the following syntax be an alternative?
Dim sendBytes as Byte( ) = Encoding.ASCII.GetBytes("Is anybody listening...")
Thanks,