In VB6 I could say
Dim s as string
s = ChrW(937)
But I did not find a function in .NET without using the Microsoft.VisualBasic runtime to do that.
Can somebody tell me how this can be done?
Is the following code correct?
Public Function ChrW(ByVal uKeyCode As Integer) As String
Dim nChar As Char = Char.ConvertFromUtf32(uKeyCode)
Return New String(nChar, 1)
End Function
Thank you!