Convert Byte

  • Thread starter Thread starter João Santa Bárbara
  • Start date Start date
J

João Santa Bárbara

hi all i have this code in C# how can i convert it to VB.NET
thks
private byte[] m_byBuff = new byte[50];
 
* "João Santa Bárbara said:
hi all i have this code in C# how can i convert it to VB.NET [...]
private byte[] m_byBuff = new byte[50];

\\\
Dim buff() As Byte = New Byte(49) {}
///
 
thks

Herfried K. Wagner said:
* "João Santa Bárbara said:
hi all i have this code in C# how can i convert it to VB.NET [...]
private byte[] m_byBuff = new byte[50];

\\\
Dim buff() As Byte = New Byte(49) {}
///
 

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

Back
Top