What is the difference between a regular string and a verbatim string?

Viewed 95049

I have a trial version of ReSharper and it always suggests that I switch regular strings to verbatim strings. What is the difference?

6 Answers

If you want to suppress the ReSharper warnings, you can use:

Localizable(false)

For things like parameters, file locations, etc., this could be a good solution.

Related