XML .NET Library

Posted by osss on Stack Overflow See other posts from Stack Overflow or by osss
Published on 2010-05-20T16:21:38Z Indexed on 2010/05/20 16:40 UTC
Read the original article Hit count: 149

Filed under:
|

Is it any XML .net library like simplexml in PHP? For example:

<root>
 <obj>
  <val>value1</val>
 </obj>
 <obj>
  <val>value1</val>
 </obj>
</root>

objects = .....Parse(xml);
Console.WriteLine(objects[0].val.ToString());

© Stack Overflow or respective owner

Related posts about .NET

Related posts about Xml