tags:

views:

143

answers:

1

Hello, The XML String I am getting from other application is converting & to & and 0F to ?F etc.

I am loading the XML string into XDocument and inserting into db using linq.

Is there any easy way to replace those characters with actual ones.

thanks

A: 

The escape code for the degrees symbol is °

Are you able to replace the ° symbols with that text instead?

Bill