c# - Adding information to an already existing xml folder from a windows form -


i trying store information writen form following code keeps happening override 1 there no add it. have following code xml serilaztion.

 xmlserializer xmlserializer = new xmlserializer((iclass.gettype()));  writer = new streamwriter(filename);  xmlserializer.serialize(writer, iclass);   creditcard cc = new creditcard(cardnumber, expirydate, creditcardtype);  user u = new user(name, surname, gender, posistion, wage, amount, banktype, cc, username, password);  xmlsave x = new xmlsave(u, "customers.xml"); 

i have try keep same format because school project.


Comments

Popular posts from this blog

windows - Single EXE to Install Python Standalone Executable for Easy Distribution -

c# - Access objects in UserControl from MainWindow in WPF -

javascript - How to name a jQuery function to make a browser's back button work? -