I have the following code:
MatchCollection matches = myRegEx.Matches(content); bool result = (from Match m in matches where m.Groups["nam
I think it would be something like this:
bool result = matches.Cast().Any(m => m.Groups["name"].Value.Length > 128);