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