Parsing XML String in C#

后端 未结 1 1422
既然无缘
既然无缘 2021-01-04 08:35

I have looked over other posts here on the same subject and searched Google but I am extremely new to C# NET and at a loss. I am trying to parse this XML...

         


        
相关标签:
1条回答
  • 2021-01-04 08:57

    Add Root here to start navigating from the root element (whmcsapi):

    string label1_Text = doc.Root.Element("totalresults").Value;
    
    0 讨论(0)
提交回复
热议问题