-6
在C#例如這個功能,你可以使用@"stringpath"
代替"stringpath"
爲什麼我要補充一個@在前面?我沒有使用@獲得相同的結果
例如:
UploadFileMethod(@"C:\test.txt", @"http://site.com/bla/file.txt");
public static bool UploadFileToDocumentLibrary(string sourceFilePath, string targetDocumentLibraryPath)
{
//stuff here
}
閱讀DOCO!說真的,如果你真的想的話,你可以在幾分鐘內找到自己。 –
@表示文字字符串,所以不需要轉義特殊字符 –
這裏http://stackoverflow.com/questions/5179389/at-sign-in-file-path-string –