C#.NET and XML

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

Guest

Hi All

Could anybody provide me with some links to sample code/tutorials for accessing XML files in C#.NET? I know the Compact Framework has reduced XML capabilities but I'm having a hard time finding samples or documention on what I can do with C#.NET

Thanks in advance
Allen
 
Allen:

You can do quite a bit by Serializing and deserializing DataSets with
ReadXML and WriteXML. Some of the XML Serialization stuff is missing (but
the OpennetCF SDF fixes that http://www.opennetcf.org/library/) in the CF
and XPath queries aren't there but the XML libraries are still really
powerful.

Here are some links:

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnppc2k3/ht
ml/mgexmlnetcpctfrmwrk.asp

http://samples.gotdotnet.com/quickstart/CompactFramework/doc/adonetdatabindi
ng.aspx

This tells you much of what's missing in the CF:
http://www.developer.com/ws/other/article.php/1558511
AllenC said:
Hi All,

Could anybody provide me with some links to sample code/tutorials for
accessing XML files in C#.NET? I know the Compact Framework has reduced XML
capabilities but I'm having a hard time finding samples or documention on
what I can do with C#.NET.
 
Back
Top