Related questions
c# replace \" characters
I am sent an XML string that I'm trying to parse via an XmlReader and I'm trying to strip out the \" characters.
I've tried
.Replace(@"\", "")
.Replace("\\''", "''")
.Replace("\\''", "\"")
plus several other ways.
Any ideas?
Enter "&" symbol into a text Label in Windows Forms?
How would one enter special characters into a Label in C# (Windows Forms)?
If you try to write a "&" into a label you'll get a sort of underscore instead..
So what's the C# equivalent of "&"? ("\&" obviously doesn't …