I need to read datatable in datatabele in xml file. For instance I have this xml settings:
<Devs>
<Dev_1>
<port>COM7</port>
<addrs>1, 2</addrs>
<SupplyVoltageMeasurement>
<addr>2</addr>
<channel>3</channel>
</SupplyVoltageMeasurement>
</Dev_1>
<Dev_2>
<port>COM6</port>
<addrs>3, 4</addrs>
<SupplyVoltageMeasurement>
<addr>4</addr>
<channel>3</channel>
</SupplyVoltageMeasurement>
</Dev_2>
<Common>
<BaudRate>38400</BaudRate>
<BufferSize>30</BufferSize>
<UpdatePeriod>50</UpdatePeriod>
<SupplyVoltageChannel>3</SupplyVoltageChannel>
</Common>
</Devs>
So I can read Dev_1 as a table, but I cannot read SupplyVoltageMeasurement as a table. So how do I read datatable SupplyVoltageMeasurement in datatable Dev_1?