2011-12-22 96 views

答えて

1
Dim hexValue = "FF" 
Dim ascii = System.Convert.ToChar(System.Convert.ToUInt32(hexValue, 16)) 
0

ChrW methodを使用できます。 Microsoft.VisualBasic名前空間をインポートする必要があります。

ChrW(Convert.ToInt32("C7", 16)) 
関連する問題