Global variable m_xDoc
I have a property of
public XmlDocument xDoc
{
get {return m_xDoc; }
set {value = m_xDoc; }
}
string xml = "<head><body><Inner> welcome </head></Inner><Outer> Bye</Outer></body></head>"
Now I have to set that property with this string as XML document ... please guide me how to do this