Newbie: how to access view.selection-collection

Hi,

I want to loop through the view.selection-objects-collection and can't figure out how to do it; the code should look like this
foreach( ... in view.selection.MISSINGCOLLECTION)
or
for(int i = 0; i < view.selection.count; i++)
{
... view.selection.MISSINGCOLLECTION(i) // can't use the right brakes here, it seems
}
maybe I am just blind
Thanx in advance
Lars

foreach (GoObject obj in view.Selection) {

...obj...
}

oh, that easy, lol

Thank you!