How to declare a fixed-length string in VB.NET?

前端 未结 10 2979
醉酒成梦
醉酒成梦 2020-12-10 04:27

How do i Declare a string like this:

Dim strBuff As String * 256

in VB.NET?

10条回答
  •  一生所求
    2020-12-10 05:02

    Have you tried

    Dim strBuff as String
    

    Also see Working with Strings in .NET using VB.NET

    This tutorial explains how to represent strings in .NET using VB.NET and how to work with them with the help of .NET class library classes.

提交回复
热议问题