How do i Declare a string like this:
Dim strBuff As String * 256
in VB.NET?
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.