xml file-> for example this is hosted on the url http://localhost/test1
<?xml version="1.0" encoding="utf-8"?> 
<MSG>
    <arabic>
        <translationOne>اول</translationOne>
        <translationTwo>دوم</translationTwo>
    </arabic> 
     <persian>
          <translationOne>یک</translationOne>
          <translationTwo>دوم</translationTwo>
    </persian> 
</MSG>
c# class
            var m_strFilePath = "http://localhost/test1";
            string xmlStr;
            using (var wc = new WebClient())
            {
                xmlStr = wc.DownloadString(m_strFilePath);
            }
            var xmldoc = new XmlDocument();
            xmldoc.LoadXml(xmlStr);
            XmlNodeList unNodeA = xmldoc.SelectNodes("MSG/arabic");
            XmlNodeList unNodeP = xmldoc.SelectNodes("MSG/persian");
            string arabic = "";
            foreach (XmlNode i in unNodeA)
            {
                 arabic += i["translationOne"].InnerText;
            }
            string persian= "";
            string persian2 ="";
            foreach (XmlNode ii in unNodeP)
            {
                 persian+= ii["translationOne"].InnerText;
                 persian2+= ii["translationTwo"].InnerText;
            }
             
            ->>print(arabic and persian);
here the test contain not correct format like (اول دوم) it's some kind of (عبد العزيز عباسین)