C# .NET XML Search layout -
i want have query results come out vertical , element name next each result example "name: result". how can accomplish that? sending them rich text box.
private void xpathbutton_click(object sender, eventargs e) { var doc = xdocument.load(ofd.filename); var = doc.xpathselectelements(xpathquery.text).elements(); var result = get.select(x => x.value); var stringlist = string.join(",", result.toarray()); queryresults.text = stringlist; }
Comments
Post a Comment