Hola, como puedo cargar este xml a un dataset usando c#?
<xml xmlns:s='uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882'
xmlns:dt='uuid:C2F41010-65B3-11d1-A29F-00AA00C14882'
xmlns:rs='urn:schemas-microsoft-com:rowset'
xmlns:z='#RowsetSchema'>
<s:Schema id='RowsetSchema'>
<s:ElementType name='row' content='eltOnly'>
<s:AttributeType name='nPhyID' rs:number='1'>
<s:datatype dt:type='int' dt:maxLength='4' rs:precision='10'
rs:fixedlength='true' rs:maybenull='false'/>
</s:AttributeType>
<s:AttributeType name='Doctor' rs:number='2' rs:nullable='true'>
<s:datatype dt:type='string' rs:dbtype='str' dt:maxLength='49'/>
</s:AttributeType>
</s:ElementType>
</s:Schema>
<rs:data>
<z:row nPhyID='165' Doctor='VAZQUEZ GALI SANDRA I'/>
<z:row nPhyID='202' Doctor='CALCANO PEREZ JULIO'/>
<z:row nPhyID='248' Doctor='BUONOMO MORALES EMIGDIO '/>
</rs:data>
</xml>
Gracias,