arpanmukherjee1
XLr8
hi.
i have a xml file with structure
now i generated its XSD with xsd.exe in Visual Studio 2010
and generated its class with command
now how to update delete and insert into this class.
i do know how to deserialize and serialize with XmlSerializer
any help is welcome. thanks in advance
i have a xml file with structure
Code:
<?xml version="1.0" encoding="UTF-8"?>
<Start Description="nslfjhl">
<Products Description="sfhsdf">
<ProductList>
<Product Mode="02" Key="2" />
<Product Mode="01" Key="11" />
</ProductList>
<CustomKeys>
<Key Value="4545"/>
</CustomKeys>
</Products>
</Start>
now i generated its XSD with xsd.exe in Visual Studio 2010
and generated its class with command
Code:
c:\> xsd C:\samlpe.xsd /c /l:CS
now how to update delete and insert into this class.
i do know how to deserialize and serialize with XmlSerializer
any help is welcome. thanks in advance
Last edited: