How can I solve the exception generated?
public static string[] getKeywords(string filename)
{
var xmlFile = new XElement(filename);
string[] keywords = xmlFile.Elements("Keyword")
.Attributes("name")
.Select(n => n.Value).ToArray();
return keywords;
}
This generates this exception:
System.Xml.XmlException was unhandled
Message=The ‘/’ character, hexadecimal value 0x2F, cannot be included in a name.
Source=System.Xml
new XElement(filename)means create an element with the name fromfilename– do you meanXElement.Load(filename)??