在VB6中我可以说
Dim s as string
s = ChrW(937)
但是我没有使用Microsoft.VisualBasic运行时在.NET中找到一个函数。
有人可以告诉我这是怎么做到的吗?
以下代码是否正确?
Public Function ChrW(ByVal uKeyCode As Integer) As String
Dim nChar As Char = Char.ConvertFromUtf32(uKeyCode)
Return New String(nChar, 1)
End Function
谢谢!