7 Replies
this is current result
But i want something like this:
It's my first time to do stuff with XML, quite new to this.
What can I do to achieve my target? Thank you
Here is serialization code :
The simplest way would be to have a model that more accurately reflects the desired XML structure. You could map your original data into this new structure before serialization or after deserialization.
Yes, i'm trying to do that
this is what I have to make
Stack Overflow
XML string array deserialize as different type name
I have the following C# class property:
private List<string> _accountTypes;
[XmlArray(ElementName = "accountTypes")]
public List<string> AccountTypes
{
get { return _accountTypes;...
ah I found this
!answer