Quando si utilizza un serializzatore Xml .NET standard, è possibile nascondere tutti i valori null? Di seguito è riportato un esempio dell'output della mia classe. Non voglio produrre numeri interi nullable se sono impostati su null.
Uscita Xml corrente:
<?xml version="1.0" encoding="utf-8"?>
<myClass>
<myNullableInt p2:nil="true" xmlns:p2="http://www.w3.org/2001/XMLSchema-instance" />
<myOtherInt>-1</myOtherInt>
</myClass>
Quello che voglio:
<?xml version="1.0" encoding="utf-8"?>
<myClass>
<myOtherInt>-1</myOtherInt>
</myClass>