VB.Net program to demonstrate the Chr() function
'VB.Net program to demonstrate the Chr() function.
Module Module1
Sub Main()
Dim num As Integer = 67
Dim ch As Char
ch = Chr(num)
Console.WriteLine("Character: {0}", ch)
End Sub
End Module
Output
Character: C
Press any key to continue . . .
Table of Contents