从 xsd 创建类而不使用 xsd.exe
本文关键字:xsd exe 创建 | 更新日期: 2023-09-27 18:37:23
我有一个简单的问题。我有 xsd 文件,我必须根据这个 xsd 创建类。
我知道我可以从命令提示符使用 xsd.exe。但是我的解决方案需要没有 xsd(仅来自 c# 代码)。
是否有任何框架或已知的解决方案?
请在 C# 中使用进程执行并调用 XSD.exe其中并提供架构定义http://www.dotnetperls.com/process
using System.Diagnostics;
class Program
{
static void Main()
{
// Use Process.Start here.
Process.Start("C:''");
}
}