Can someone help me to convert this php script to vb or c#
<?php
// Load the XML file, line-by-line, into an array, join
// all of the lines into one string and echo the string
// to the caller.
$XMLurl = "http://www.moreover.com/cgi-local/page?"
. $QUERY_STRING;
$file = file ($XMLurl) or die ("Could not open XML file.");
$XMLContents = join ('', $file);
echo $XMLContents;
?>
I'm trying to compare functions and concepts.