在不使用xsd.exe的情况下从xsd创建类

时间:2015-01-14 07:24:07

标签: c# .net xml xsd

我有一个简单的问题。 我有xsd文件,我必须根据这个xsd创建类。

我知道我可以在命令提示符下使用xsd.exe。 但我的解决方案需要没有xsd(仅来自c#代码)。

是否有任何框架或已知解决方案?

1 个答案:

答案 0 :(得分:0)

请在C#中使用流程执行并在其中调用XSD.exe并提供架构定义 http://www.dotnetperls.com/process

using System.Diagnostics;

class Program
{
    static void Main()
    {
     // Use Process.Start here.
    Process.Start("C:\\");
  }
}