using System;
using System.Web;
public class Program
{
public static void Main()
string xml = "<node>& This is an example of coded & content &<node>";
string decodedXml = HttpUtility.HtmlDecode(xml);
Console.WriteLine(decodedXml);
}