2011-12-22 4 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)) 
관련 문제