0
可能重複:
How to create XSD file programmatically in C#?轉換的XDocument到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);
顯然,公佈的文件是不是XSD ... –
坦克!!!!!!!!!!! –