I have a serializable class that I would like to serialize with its data (of course), as well as with its XmlDoc comments. Does anyone know of an existing library that does this work, or at least part of it?
Reading XmlDoc C # code like Intellisense does is a good starting point.
Since examples are better than theory, I would like to have the following code (C #)
public class ApplicationOptions : ISerializable {
The following serialized XML form is displayed
<parameter name="WindowPositionX" Value=12 /> <parameter name="WindowPositionY" Value=13 />
source share