Answered converting XML string to json file

tyroneruss

New member
Joined
Jan 1, 2020
Messages
2
Programming Experience
3-5
Does anyone have any idea on to resolve this problem. My client won't any language .. found fix with c# and asp.net
 
This is a popular library for Json:
sample code:
VB.NET:
Dim doc = XDocument.Parse(xmlstring)
Dim jsonstring = Newtonsoft.Json.JsonConvert.SerializeXNode(doc)
 
Back
Top