0
我們怎樣才能將ObserableCollection<collectionName>
轉換爲C#中的XML文件?& WPF?如何將ObservableCollection從C#轉換爲XML文件?
我們怎樣才能將ObserableCollection<collectionName>
轉換爲C#中的XML文件?& WPF?如何將ObservableCollection從C#轉換爲XML文件?
使用此代碼購買,我很容易將收集轉換爲XML文件。
static private DataTable ResultsData = new DataTable();
ResultsData = obserableCollectionName().ToDataTable();
System.IO.StringWriter writer = new System.IO.StringWriter();
ResultsData.WriteXml(writer, XmlWriteMode.WriteSchema, false);
string result = writer.ToString();
編輯問題只發生,沒有答案出現? –