2014-04-21 92 views

回答

1

正如MSDN documentation on VB.NET string literals說:

Within a string, a sequence of two double-quote characters is an escape sequence 
representing a double quote in the string. 

因此,你需要在它前面加上另一個雙引號字符,這樣每雙引號內的String文字逃脫

Dim String1 As String = "<?xml version= ""1.0"" encoding ="" UTF-16""?>" 
+1

用於鏈接到文檔。 –

+0

謝謝!這工作得很好。 –

+0

@WilfredoSalinas歡迎您。我建議你接受David Zemens的帖子作爲答案,因爲他真的是第一個給你提問的(在評論中)。 – Crono

4

那麼我怎麼樣提供答案,因爲我提供了答案:)

逃避你的雙引號:

"<?xml version= ""1.0"" encoding ="" UTF-16""?>"

+2

好點:)刪除我的 –

相關問題