構造がかなり不十分な外部 xml フィードがあるため、直接逆シリアル化する方法がわかりません。
アセンブリで System.IO.Linq を使用できないため、私が知っている唯一の解決策は使用できません。
このxmlの例は
<body>
<route>
<stop tag="Info I need to get"/>
<stop tag="Info I need to get"/>
<path>
<point tag="info I need to get"/>
<point tag="info I need to get"/>
<point tag="info I need to get"/>
</path>
<path>
<point tag="info I need to get"/>
</path>
<path>
<point tag="info I need to get"/>
<point tag="info I need to get"/>
</path>
</route>
</body>
何らかの方法ですべてのパス ポイントを配列に解析できれば、タグ内のデータを簡単に取得できます。
私が参照していたlinqソリューションは、How to parse multiple single xml elements in .Net C#で言及されています