Possible Duplicate:
@(at) sign in file path/string
in C# for example this function you can use @"stringpath" instead of "stringpath"
Why should I add an @ there in front? I get the same results without using @??
example:
UploadFileMethod(@"C:\test.txt", @"http://site.com/bla/file.txt");
public static bool UploadFileToDocumentLibrary(string sourceFilePath, string targetDocumentLibraryPath)
{
//stuff here
}