[Mono-list] using xml classes
Atsushi Eno
atsushi@ximian.com
Thu, 27 May 2004 16:30:10 +0900
Hello,
> I need to use or inherit from a class similar to the XmlElement
> class found in the System.Xml namespace. But since it is made as
> internal i cannot use it (i.e inherit from it). Is there a way
> for me to download this file from mono and use it?
mmm, I could not understand the exact question.
Do you mean that you want to derive from XmlElement? It can be done.
XmlElement is not internal and one of the constructor is protected.
It is actually used in System.Data.dll (XmlDataDocument.XmlDataElement).
You can freely use class library sources from the download page;
http://www.go-mono.com/download.html (mcs-0.91.tar.gz)
or from cvs (module name; mcs).
Atsushi Eno