$item->children (http://…) in C#

fantaaax33

New Member
I'm working on converting a PHP Google calendar parser to .NET/C#. I'm not that familiar with PHP; I was having trouble understanding how this line works:\[code\]$gd = $item->children('http://schemas.google.com/g/2005')\[/code\]It comes in part of a foreach loop:\[code\]$s = simplexml_load_file($feed); foreach ($s->entry as $item) { $gd = $item->children('http://schemas.google.com/g/2005'); if ($gd->eventStatus->attributes()->value =http://stackoverflow.com/questions/13806476/= $confirmed) {?> <font size=+1><b> <?php print $item->title; ?> </b></font><br>..........\[/code\]My main question is how does $item->children('http://schemas.google.com/g/2005') work? What does it do with the URL? Is there an equivalent in .Net or C#?
 
Back
Top