O
Ozz
public class myXmlDocument:XmlDocument
{
public class myXmlDocument(XmlDocument x)
{
this=x;
}
}
"ITS WRONG ONE" (look above)
I will write:
XmlDocument x1=new XmlDocument();
x1.LoadXml("<a/>");
myXmlDocument x=new myXmlDocument(x1) ;
----> this line creates instance from myXmlDocument and set itself
(instance) to x1;
in summary can i set instance to something in constructor or method of
class...?
its possible ...
How XmlDataDocument make it ???????
XmlDataDocument x=new XmlDataDocument (DataSet myDataSet);
{
public class myXmlDocument(XmlDocument x)
{
this=x;
}
}
"ITS WRONG ONE" (look above)
I will write:
XmlDocument x1=new XmlDocument();
x1.LoadXml("<a/>");
myXmlDocument x=new myXmlDocument(x1) ;
----> this line creates instance from myXmlDocument and set itself
(instance) to x1;
in summary can i set instance to something in constructor or method of
class...?
its possible ...
How XmlDataDocument make it ???????
XmlDataDocument x=new XmlDataDocument (DataSet myDataSet);