All,

when I read this xml using DataSet.ReadXml I get a dataset with relations. How can I use this data inside when the relations have an autogenerated name? In the end I would like to put the 'Value' fields in a String[], how can I do this?

Code:
<?xml version="1.0" encoding="utf-8" ?>
<Types>
	<Type>
		<Type>Discrete</Type>
		<Name>bool</Name>
		<ID>1</ID>
		<Minimum>False</Minimum>
		<Maximum>True</Maximum>
		<Value>False</Value>
		<Value>True</Value>
	</Type>
</Types>
Thanks,
Jef