How to fill String with 0x00

jdy0803

Well-known member
Joined
Sep 9, 2012
Messages
73
Location
Santa Clarita
Programming Experience
10+
Here is VB6 code that fill String with 0x00.
Private Const cMAXLEN = 255

Dim strLCData As String
strLCData = String$(cMAXLEN, 0)


How to make VB.NET code for this?
 
Back
Top