从XML字符串生成XML模式

时间:2014-05-27 21:01:45

标签: c# xml excel

我有一个XML字符串,我想加载到Excel工作表中。我几乎可以使用它,但我需要能够生成传递给XmlMaps.Add的架构:

String xml; //This is already populated with an XML String; I want to get the schema based on the xml structure
Workbook w = Globals.ThisAddIn.Application.ActiveWorkbook;
w.XmlMaps.Add(***Need schema here***, "root node");

是否可以在此以编程方式生成架构?我从Web服务接收此XML字符串。

0 个答案:

没有答案