雙引號 quotation marks 的使用及範例

雙引號 " (quotation marks) 在 C# 的表示方式,共有三種:

  • [ \" ]
  • [ '\u0022' ]
  • [ string strQuote = "\""; ]

使用時,任選一種使用即可。

下列是各種用法的範例:
// [ \" ]
result = Process.Start("\"C:\\Program Files\\7-Zip\\7z.exe\"", " a -t" + strZipType + " " + pZipName + " " + pFilename);

// [ '\u0022' ]
result = Process.Start('\u0022' + @"C:\Program Files\7-Zip\7z.exe" + '\u0022', " a -t" + strZipType + " " + pZipName + " " + pFileName);

// [ string strQuote = "\""; ]
// 先定義字串變數 Quote
result = Process.Start(strQuote + @"C:\Program Files\7-Zip\7z.exe" + strQuote , " a -t" + strZipType + " " + pZipName + " " + pFilename);

沒有留言: