我已经让我的应用程序从我的 xml 文档中读取一些值,但是我不确定我将如何存储它们,因为我目前对于文件中的每个元素总共有 6 条信息。
XML 示例
<?xml version="1.0" encoding="utf-8"?>
<App>
<Name>First Application </Name>
<FileName>1.exe</FileName>
<FilePath>C:\</FilePath>
<Third_Parameter>etc</Third_Parameter>
<Forth_Parameter>etc</Forth_Parameter>
<Name>Application 2</Name>
<FilePath></FilePath>
<Third_Parameter>etc</Third_Parameter>
<Forth_Parameter>etc</Forth_Parameter>
</App>
我正在考虑一个具有唯一 ID 的数组,因为无论如何我已经为每个应用程序都有一个,但我不知道如何动态创建一个具有另一个变量名称的数组。我看着使用字典,但是我有两个以上的变量,不知道如何使它与它一起工作。
基本上我需要一种在不使用数据库的情况下为可能无限量的应用程序存储所有这些信息的方法。