私は次のようなクラスのリストを持っています
public class Root
{
public List<Sensor> sensorList
{
get;set;
}
}
このクラスをシリアル化する場合、XMLは次のようになります
<?xml version="1.0" encoding="us-ascii"?>
<Root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<sensorList>
<Sensor>
<Channel>1</Channel>
</Sensor>
<Sensor>
<Channel>2</Channel>
</Sensor>
</sensorList>
</Root>
しかし、私はこのようなxmlが必要です
<Root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Sensor>
<Channel>1</Channel>
</Sensor>
<Sensor>
<Channel>2</Channel>
</Sensor>
</Root>
リストを使用してこれをどのように達成できますか?