Hi,
I'm trying to find the ReadXml class in the CompactFamework, or an equivalent, but I stil can't find.
In the CF 1.0, it was part of the namespace System.Data, but it seems to not be anymore.
Can you help me to find a way to read XML documents under CF 2.0
Regards,
Ch'Portos.

ReadXml under CompactFramework 2.0
Jimbeaux
As far as I know the only similar to what you want is the ReadXml() Method of the Dataset that allows you to load data to a dataset from an xml.
MSDN link:
http://msdn2.microsoft.com/en-us/library/system.data.dataset.readxml.aspx
GrayMatter Software
- I added in the project properties the reference to System.Xml.dll
- I added at the beginning of the project the line Import System.Xml
Thank you guy !
Ch'Portos.
Hoopla
NETCF V2 includes everything NETCF V1 has. So, yes, it's likely you're doing something wrong. Most likely you’re just missing “Imports System.Data” statement or don’t have reference System.Data.dll.
r prasanna vignesh
Is it normal, or did I do something wrong