I'm having trouble trying to select a particular node from a .csproj file I've read in as a XDocument.\[code\]XDocument xmldoc = XDocument.Load("The full path of the .csproj file");\[/code\]This loads the .csproj file into a XDocument without issue. I've tried \[code\]Descendants\[/code\], \[code\]Elements\[/code\], etc etc to try to get \[code\]TheNodeIWant\[/code\] and its value, but cannot figure out why I keep getting no results.\[code\]<?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <TheNodeIWant>The String I Want </TheNodeIWant> </PropertyGroup> <PropertyGroup> ....... </PropertyGroup> </Project>\[/code\]How can I select \[code\]TheNodeIWant\[/code\] and retrieve its value?