Hi,
I wanna change my code from:
string path=@"c:\Directory\test.xml";
XmlSerializer s = new XmlSerializer(typeof(Car));
Car car;
TextReader r=new new StreamReader(path);
car = (Car)s.Deserialize(r);
r.Close();
into Code that would convert a xml to string , and then convert string to object car.
Is it possible??