将其存储为 XML
<?xml version="1.0" encoding="UTF-8"?>
<Components>
<Component name="Motor" cost="100" quantity="100" />
<Component name="Shaft" cost="10" quantity="100" />
</Components>
假设你有这个定义
public class AssembleComponent
{
public decimal Cost { get; set; }
public int Quantity { get; set; }
}
像这样加载它
var components = new Dictionary<string, AssembleComponent>();
XDocument doc = XDocument.Load(@"C:\Users\Oli\Desktop\components.xml");
foreach (XElement el in doc.Root.Descendants()) {
string name = el.Attribute("name").Value;
decimal cost = Decimal.Parse(el.Attribute("cost").Value);
int quantity = Int32.Parse(el.Attribute("quantity").Value);
components.Add(name, new AssembleComponent{
Cost = cost, Quantity = quantity
});
}
然后您可以像这样访问组件
AssembleComponent motor = components["Motor"];
AssembleComponent shaft = components["Shaft"];
注意:通过在运行时调用编译器来动态创建变量名并不是很有用,因为您需要在编译时(或者如果您愿意,可以在设计时)知道它们才能对它们做一些有用的事情。因此,我将组件添加到字典中。这是动态创建“变量”的好方法。