我使用 xsd.exe 从 XML 文件生成了一个新的 C# 类:
test.xml
--------
<?xml version="1.0" encoding="UTF-8"?>
<Output>
<ReportType name="New Reports">
<Reports>
<Report name="report1">
<Items>
<Item name="item1">
<Value>1.00</Value>
</Item>
<Item name="item2">
<Value>2.00</Value>
</Item>
</Items>
</Report>
<Report name="report2">
<Items>
<Item name="item3">
<Value>3.00</Value>
</Item>
<Item name="item4">
<Value>4.00</Value>
</Item>
</Items>
</Report>
</Reports>
</ReportType>
</Output>
现在我试图利用生成的类来生成一个新的 xml 文件,我需要设置这个变量:
private OutputReportTypeReportsReport[][] reportsField;
如何初始化并向其添加数据?