我正在将 PHP Google 日历解析器转换为 .NET/C#。我对PHP不太熟悉;我无法理解这条线是如何工作的:
$gd = $item->children('http://schemas.google.com/g/2005')
它是 foreach 循环的一部分:
$s = simplexml_load_file($feed);
foreach ($s->entry as $item) {
$gd = $item->children('http://schemas.google.com/g/2005');
if ($gd->eventStatus->attributes()->value == $confirmed) {
?>
<font size=+1><b>
<?php print $item->title; ?>
</b></font><br>..........
我的主要问题是 $item->children('http://schemas.google.com/g/2005') 是如何工作的?它对 URL 有什么作用?.Net 或 C# 中是否有等价物?