我有兩個名爲Movie和Movie Type的類,我試圖根據給出的示例xml創建該類的對象。如何從XML文檔中提取數據
public class Movie
{
public string title;
public string rating; //can always convert.toin32 later
}
public class Genre
{
int id;
string genreType;
}
我想基於以下XML創建該類的對象,什麼是最好/最快的方式?
<movie>
<title> se7en </title>
<genre> thriller</genre>
<rating> 18 </rating>
</movie>
<movie>
<title> zodiac </title>
<genre> thriller</genre>
<rating> 18 </rating>
</movie>
[轉換XML使用反射對象](HTTP可能重複:// stackoverflow.com/questions/3268912/convert-xml-to-object-using-reflection) – Bio42 2015-02-11 09:59:06
可能使用Linq查詢記錄的Xml文件的副本(http://stackoverflow.com/questions/26422431/query-xml-file-for-records-using-linq) – 2015-02-11 10:20:26