I\'m new to working with XML, and I\'ve encountered a weird problem while trying to get a specific tag from a spring.net configuration file. After trying to narrow down the
You need to search for tags in that namespace:
XNamespace ns = "aaa"; xmlFile.Descendants(ns + "B").ToList()