Use CType to convert Char to String : Char « Data Type « VB.Net Tutorial






Imports System.Collections

public class ConvertToString
   public Shared Sub Main
               Dim c As Char = "A"c
               Dim s As String = ""
               s = CType(c, String)
               Console.WriteLine(s)
   End Sub
End class
A








2.13.Char
2.13.1.Char Declaration
2.13.2.Declare Char using 'c'
2.13.3.Use CType to convert Char to String
2.13.4.GetUnicodeCategory from Char