Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在将 VB6 代码转换为 vb.net 时遇到问题。谁能帮我转换以下代码行?
bin_str = StrConv(imgA, vbUnicode)
bin_str --> 字符串 imgA --> 变体类型
我相信这是正确的方法:
bin_str = System.Text.Encoding.Unicode.GetString(imgA)