tw.WriteLine(@" ""Air Temperature sensor "" 20," + measure + ", 24, """ + this.time.Year + "-" + this.time.Month + "-" + this.time.Day + " " + this.time.Hour + ":" + this.time.Minute + ":" + this.time.Second + "\"");
當我有三個雙引號語法錯誤是叫我,我有語法錯誤,「」預計我嘗試用四個雙引號,用斜線但同樣我有這樣的錯誤。我知道轉義雙引號需要兩個雙引號。但對於我的情況是行不通的。與擺脫雙引號
你應該在你想要轉義的每個字符串之前放@這種方式是雙重的。 '@「」+「」'第二個添加的字符串不是逐字。 –
正在工作。謝謝。我忘了@ –