我有一个像这样的班级名单
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>
我如何使用列表来实现这一点?