What is VB.NET equiv to vb6 "String(number, character)" function? - Visual Basic .NET
Does anyone know what the VB.NET equivalent to the VB 6.0 String Function [String(number, character)] is? You can use the String class constructor that takes a Char and a count. s = New String("x"c, 10) Mattias--Mattias Sjögren [MVP] mattias @ mvps.org .....