Is this good or bad:
foreach (Match match in serverNameRegex.Matches(loginPage))
{
....
}
or should I use it like that for better speed:
MatchCollection matches = serverNameRegex.Matches(loginPage);
foreach (Match match in matches)
{
...
}

serverNameRegex.Matches(loginPage)re-evaluated on each iteration? – Jodrell Dec 7 '11 at 9:18