本文介绍了使用c#进行pptx到xml的转换的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用c#读取pptx文件并将其转换为xml文件。

how can i read pptx file and convert it into xml file using c#.

推荐答案

StringReader reader = new StringReader(strText);
XmlTextReader xmlReader = new XmlTextReader(reader);
XmlDocument doc = new XmlDocument();
doc.Load(xmlReader);





希望它有所帮助。



hope it helps.




这篇关于使用c#进行pptx到xml的转换的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 08:17