I want to process MSXML which is generated by Visio 2010, Which Language will be helpful to work with the generated XML, i`m very new to this,
Visual basic, .Net or C# will help me?
Regards
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
C# and VB.NET both provide equivalent support for XML because they share the same framework and can utilize all the same libraries. There are many ways to skin the cat, so it all depends what makes the most sense in your situation. You can load the XML with a
DataSet. You can use theXmlDocumentclass to load it and then search through it with XPath. You can load it with theXDocumentclass and search through it with LINQ. You can deserialize the XML into a matching custom class object. Or, if you are interested in transforming the XML document into another XML or other format, I would recommend using XSLT. You can apply XSLT scripts to XML documents in .NET using theXslCompiledTransformclass. You could easily find examples for all of these online, including on this site, by searching around for each one.