Getting issue with below code
System.Xml.XmlDocument xd1 = new System.Xml.XmlDocument();
xd1 = (System.Xml.XmlDocument)Newtonsoft.Json.JsonConvert.DeserializeXmlNode(customJsonArrayData.ToString(), currentSheetName); //getting issue here.
DataSet jsonDataSet = new DataSet();
jsonDataSet.ReadXml(new System.Xml.XmlNodeReader(xd1));
I had gone through link, but do we have any short simple answer than given in that post.