Ejemplo n.º 1
0
        private static void AddElement()
        {
            Element toBeAdded = new Element()
            {
                Name = Console.ReadLine()
            };
            Element onWhich = Search();

            xml.AddElement(toBeAdded, onWhich);
        }