yes I know this. I develop this code but it doesn't work becouse
XmlSerializer doesn't exist in compact framewok 1.
XmlSerializer xs = new XmlSerializer(typeof(Class1));
MemoryStream memoryStream = new
MemoryStream(Util.StringToUTF8ByteArray(xml));
XmlTextWriter xmlTextWriter = new
XmlTextWriter(memoryStream, Encoding.UTF8);
return (Class1)xs.Deserialize(memoryStream);
> You have to write your own deserializer.
>
[quoted text clipped - 15 lines]
>
> - Mostrar texto de la cita -
Right. What I'm saying is that you have to actually *write* the
XmlSerializer class yourself.

Signature
Chris Tacke, Embedded MVP
OpenNETCF Consulting
Managed Code in an Embedded World
www.OpenNETCF.com
> yes I know this. I develop this code but it doesn't work becouse
> XmlSerializer doesn't exist in compact framewok 1.
[quoted text clipped - 25 lines]
>>
>> - Mostrar texto de la cita -
fjvela@gmail.com - 28 Jun 2007 09:09 GMT
Do you have any example?
Thanks!
> Right. What I'm saying is that you have to actually *write* the
> XmlSerializer class yourself.
[quoted text clipped - 40 lines]
>
> - Mostrar texto de la cita -
fjvela@gmail.com - 28 Jun 2007 09:10 GMT
Do you have any example?
Thanks!
> Right. What I'm saying is that you have to actually *write* the
> XmlSerializer class yourself.
[quoted text clipped - 40 lines]
>
> - Mostrar texto de la cita -
Simon Hart - 28 Jun 2007 14:20 GMT
This might get you started:
http://www.codeproject.com/csharp/SimpleSerializer.asp

Signature
Simon Hart
http://simonrhart.blogspot.com
> Do you have any example?
>
[quoted text clipped - 44 lines]
> >
> > - Mostrar texto de la cita -
fjvela@gmail.com - 28 Jun 2007 15:45 GMT
Thanks!
I develop one to compact framework 1.
> This might get you started:http://www.codeproject.com/csharp/SimpleSerializer.asp
>
[quoted text clipped - 52 lines]
>
> - Mostrar texto de la cita -