What I would like to do is be able to take a Dictionary of key value pairs and make the key the name of a variable and the value the value. From searching the net seems to be very vague on whether this is possible.
The equivalent in PHP would be:
foreach($array as $key=>$val) { $$key = $val; }
Thanks.