vb6 migration - How to declare a fixed-length string in VB.NET? - Stack Overflow
It depends on what you intend to use the string for. If you are using it for file input and output, you might want to use a byte array to avoid encoding problems. In vb.net, A 256-character string may be more than 256 bytes. Dim strBuff(256) as byte You c...