using static System.Console;
public static void Main() {
var root = XElement.Load(new StringReader(@"<pessoas>
<email>joao.joao@outlook.com</email>
var nomes = root.Elements("pessoas").Select(x => (string)x.Elements("pessoa").Element("nome"));
foreach (var n in nomes.ToList()) WriteLine(n);