重複の可能性:
@(at)サインインファイルのパス/文字列
たとえばC#では、この関数を@"stringpath"
代わりに使用できます"stringpath"
なぜ前に@を追加する必要があるのですか?@??を使用しなくても同じ結果が得られます
例:
UploadFileMethod(@"C:\test.txt", @"http://site.com/bla/file.txt");
public static bool UploadFileToDocumentLibrary(string sourceFilePath, string targetDocumentLibraryPath)
{
//stuff here
}