How to serialize data in WinCE platform

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

how can i do for this proble
I want to serialize data to a file

We can use XmlSerialization in PC platform , as below

'Create a serialize
Dim serializer As New XmlSerializer (Me.GetType
serializer.Serialize(...

But there is no XmlSerializer class , when I develope in WinCE .NET platform
Is there any class to do it

thanks!
 
jerry_wu said:
Hi

how can i do for this problem
I want to serialize data to a file

We can use XmlSerialization in PC platform , as below

'Create a serializer
Dim serializer As New XmlSerializer (Me.GetType)
serializer.Serialize(...)

But there is no XmlSerializer class , when I develope in WinCE .NET
platform Is there any class to do it?

I think it's not.

XmlSerializer documentation:

"Plattformen: Windows 98, Windows NT 4.0, Windows Millennium Edition,
Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows
Server 2003-family"


--
Armin

How to quote and why:
http://www.plig.net/nnq/nquote.html
http://www.netmeister.org/news/learn2quote.html
 
It didn't say XmlSerializer support in Windows CE... I have the same problem trying to use XmlSerializer in my Pocket PC apps. Any suggestion


----- Armin Zingler wrote: ----

jerry_wu said:
H
I want to serialize data to a fil
Dim serializer As New XmlSerializer (Me.GetType
serializer.Serialize(...
platform Is there any class to do it

I think it's not

XmlSerializer documentation

"Plattformen: Windows 98, Windows NT 4.0, Windows Millennium Edition
Windows 2000, Windows XP Home Edition, Windows XP Professional, Window
Server 2003-family


--
Armi

How to quote and why
http://www.plig.net/nnq/nquote.htm
http://www.netmeister.org/news/learn2quote.htm
 
Back
Top