可能重复:
如何在 C# 中以编程方式创建 XSD 文件?
我有一个 XDocument 对象,我想通过代码将其转换为 xsd 文件
我该怎么做?
我的项目如下所示:
WebClient client = new WebClient();
Stream stream = client.OpenRead("http://maps.googleapis.com/maps/api/distancematrix/xml?origins=Vancouver+BC|Seattle&destinations=San+Francisco|Vancouver+BC&mode=bicycling&language=fr-FR&sensor=false");
XDocument doc = XDocument.Load(stream);