Just come across the following line of code and having a hard time finding documentation for it, is it a lambda expression
? What does this do?
temp = Regex.Replace(url, REGEX_COOKIE_REPLACE,match => cookie.Values[match.Groups["CookieVar"].Value]);
Specifically interested in the =>
.