XML De/Serialization

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Mark

    XML De/Serialization

    1. if my web services serializes a c++ class to Xml stream, what data type
    does my Vb.net deserialize it to?

    2. since we are using web services we would replace xmltextreader with a
    System.IO.Strea m ?


    void DeserializeACar ()

    {

    XmlSerializer ser = new XmlSerializer(t ypeof(Car));

    XmlTextReader reader = new XmlTextReader(" car.xml");

    Car wifesCar = (Car)ser.Deseri alize(reader);

    // wifesCar is a 1997 Ford Explorer again

    reader.Close();

    }


Working...