Hi,
I am trying to create a c# object for serialization/deserialization with a string property. The property needs to generate an element and also have an attribute:
eg:
...
<Comment Name="CommentName"></Comment>
...
If the property is a string, I cant see how to add the attribute, and if the comment is an object with Name and Value properties it generates:
...
<Comment Name="CommentName">
<Value>comment value</Value>
</Comment>
...
Any ideas?