Home > Software engineering >  How to defined in vs2010 fixed-length string
How to defined in vs2010 fixed-length string

Time:09-26

Programming environment for visual studio 2010
Using the vb language
Which want to define a string of fixed length of 30
Statements below

Dim x as string * 30
Compile time always prompt error, how to solve? Please directly, thank you

CodePudding user response:

VB.NET is not a VB

CodePudding user response:

Why don't want to tangle fixed-length? What's the purpose? Must do a process can write their own special treatment, or directly with fixed Byte array
  • Related