Skip to main content
Post Made Community Wiki by CommunityBot
Source Link
Patrick
  • 93k
  • 11
  • 54
  • 62

Here's a useful one for regular expressions and file paths:

"c:\\program files\\oldway"
@"c:\program file\oldway"file\newway"

The @ tells the compiler to ignore any escape characters in a string.

Here's a useful one for regular expressions and file paths:

"c:\\program files\\oldway"
@"c:\program file\oldway"

The @ tells the compiler to ignore any escape characters in a string.

Here's a useful one for regular expressions and file paths:

"c:\\program files\\oldway"
@"c:\program file\newway"

The @ tells the compiler to ignore any escape characters in a string.

Source Link
Patrick
  • 93k
  • 11
  • 54
  • 62

Here's a useful one for regular expressions and file paths:

"c:\\program files\\oldway"
@"c:\program file\oldway"

The @ tells the compiler to ignore any escape characters in a string.