我有这个 XML:
<?xml version='1.0' encoding='UTF-8'?>
<applications>
<category cat="Player">
<app>
<name>4Media Blu Ray Creator</name>
</app>
</category>
<category cat="Burning">
<app>
<name>Nero Micro</name>
</app>
</category>
</applications>
现在我想搜索应用程序名称并返回包含类别名称(父猫属性)的 XApplications 列表。
这是我的XApplication 类:
class XApplication
{
public string Name { set; get; }
public string Category { set; get; }
public XApplication(string name, string category)
{
Name = name;
Category = category;
}
}