private static void ReplaceRecurcively(this XContainer container, string oldValue, string newValue) { container.ConvertRecurcively(s => s.Replace(oldValue, newValue)); }