xml to json
Unity3D/C# 2020. 8. 5. 10:10private void ParseXML(string xml)
{
XmlDocument doc = new XmlDocument();
doc.LoadXml(xml);
doc.ChildNodes.OfType<XmlNode>().Where(x => x.NodeType == XmlNodeType.XmlDeclaration).ToList().ForEach(x => doc.RemoveChild(x));
string json = JsonConvert.SerializeXmlNode(doc);
Debug.Log(json);
var a = JsonConvert.DeserializeObject(json);
}
https://stackoverrun.com/ko/q/9024392
https://www.newtonsoft.com/json/help/html/ConvertXmlToJsonForceArray.htm
'Unity3D > C#' 카테고리의 다른 글
디버거에서 변수에 대한 메모리 (0) | 2020.11.24 |
---|---|
한글 받침에따라서 '을/를' 구분하기 (0) | 2020.10.19 |
C# 배열연습 (0) | 2020.04.17 |
구조체(struct) 와 클래스(class)의 차이점 (0) | 2019.08.15 |
visual studio code 에서 c# 디버깅 하기 (0) | 2019.08.14 |