我使用此代码创建查询
For i As Integer = 0 To myMetaColumnInformation.result.Count - 1
query.Append("[")
query.Append(myMetaColumnInformation.result(i).questionCode.ToString)
query.Append("] ")
query.Append(typeList(i))
query.Append("""")
query.Append(", ")
Next
我的问题是query.Append("""")
创建两个引号,但我只需要一个引号。如果将命令简化为query.Append(""")
,则代码不会运行。我得到的每一个提示都是关于添加两个引号而不是一个引号。我也尝试过\“,但这也无济于事。有人可以帮助我完成此任务吗?