S
Sueffel
Simple questions that have just been kickin my butt!
Question 1:
Here's the code:
XmlNode node1;
XmlAttribute attribute1;
node1 = this.xmlDoc.DocumentElement[sectionName];
attribute1 = node1.Attributes.GetNamedItem(attributeName);
And here's the error:
Cannot implicitly convert type 'string' to 'System.Xml.XmlAttribute'
Question 2:
How do you add those nice comments to a class that get pulled up in
Intellisense?
Thank you,
Sueffel
Question 1:
Here's the code:
XmlNode node1;
XmlAttribute attribute1;
node1 = this.xmlDoc.DocumentElement[sectionName];
attribute1 = node1.Attributes.GetNamedItem(attributeName);
And here's the error:
Cannot implicitly convert type 'string' to 'System.Xml.XmlAttribute'
Question 2:
How do you add those nice comments to a class that get pulled up in
Intellisense?
Thank you,
Sueffel