I have the following code:
MatchCollection matches = myRegEx.Matches(content); bool result = (from Match m in matches where m.Groups["nam
You can try something like this:
List matchList = matches.Cast().Where(m => m.Groups["name"].Value.Length > 128).ToList();