Hi,
I was wondering if somone could provide an outline of how I would
go about implementing serialization that turns a string dictionary to
XML attributes. For example, suppose I have
<XmlRoot()_
Public Class Foo
' I want the key/value pairs to be xml attributes of the root.
Forever and always. =)
Public FooAttributes As Dictionary(Of String, String)
End Class
When I serialize an instance of Foo to XML I would like FooAttributes
to end up as XML attributes on <Foo />
Cheers,
Aeden