msgbox(“”“hellohello”””) 这样写的结果输出的内容还是英文双引号。
我现在是这样解决的
debug.writeline(convert.tochar(8220) & “hello” & convert.tochar(8221))
用字符的编码来转换
如果在实际的使用中我们可以申请两个变量
public shared vblq as char = convert.tochar(8220)
public shared vbrq as char = convert.tochar(8221)
然后在需要时这样调用
debug.writeline(vblq & “hello” & vbrq)
输出结果
“hello”