可能重复:
@(at) 登录文件路径/字符串
例如,在 C# 中,您可以使用此函数@"stringpath"
代替"stringpath"
为什么我要在前面添加一个@?不使用 @?? 得到相同的结果
例子:
UploadFileMethod(@"C:\test.txt", @"http://site.com/bla/file.txt");
public static bool UploadFileToDocumentLibrary(string sourceFilePath, string targetDocumentLibraryPath)
{
//stuff here
}