Differences
This shows you the differences between the selected revisions of the page.
| 2017-10-20 | 2017-10-20 | ||
| code wrapping for new design (martin) | verbatim C# string literal (martin) | ||
| Line 29: | Line 29: | ||
| }; | }; | ||
| - | const string localPath = "C:\\local\\path"; | + | const string localPath = @"C:\local\path"; |
| const string remotePath = "/remote/path"; | const string remotePath = "/remote/path"; | ||
| const int batches = 3; | const int batches = 3; | ||
| Line 307: | Line 307: | ||
| }; | }; | ||
| - | const string localPath = "C:\\local\\path"; | + | const string localPath = @"C:\local\path"; |
| const string remotePath = "/remote/path"; | const string remotePath = "/remote/path"; | ||
| const int batches = 3; | const int batches = 3; | ||