F
Frank Zimmermann
I write a C# program (VS.NET 2003) for my PocketPC. This program use a
XML-File.
I count the element in the xml-file which these code piece.
....
XmlDocument store = new XmlDocument();
store.Load ("/Program Files/Test.xml");
int Anzahl = store.DocumentElement.ChildNodes.Count;
....
In a other part of the programm i delete a element from the xml-file and i
save the file with store.Save(...)
When i count the element after the delete-operation i became the old count.
For example: before deleting a element Anzahl = 10
after Anzahl = 10 but the the file has now 9 elements...
What is wrong?
Mail: (e-mail address removed)
XML-File.
I count the element in the xml-file which these code piece.
....
XmlDocument store = new XmlDocument();
store.Load ("/Program Files/Test.xml");
int Anzahl = store.DocumentElement.ChildNodes.Count;
....
In a other part of the programm i delete a element from the xml-file and i
save the file with store.Save(...)
When i count the element after the delete-operation i became the old count.
For example: before deleting a element Anzahl = 10
after Anzahl = 10 but the the file has now 9 elements...
What is wrong?
Mail: (e-mail address removed)