Monday 16 December 2013

C# - How to fix error - Newline is constant

Watch this example on YouTube

Replace
text = text.Replace("\\", "\");
with
text = text.Replace(@"\\", @"\");

No comments:

Post a Comment