I have this xml file\[code\]<?xml version="1.0" encoding="utf-8" ?><parameters> <parameters registerLink="linkValue" TextBox.name="nameValue" /></parameters>\[/code\]I want to print off "LinkValue" and "nameValue" by code:\[code\] Console.WriteLine("registerLink: " + registerLink); Console.WriteLine("TextBox.name: " + TextBox.name);\[/code\]Thanks