提交 6ff9e44f 编写于 作者: C CyrusNajmabadi

Remove linq allocation.

上级 a6fb914d
......@@ -12,7 +12,7 @@ internal static class PatternMatcherExtensions
var matches = ArrayBuilder<PatternMatch>.GetInstance();
matcher.AddMatches(candidate, matches);
var result = matches.FirstOrNullable();
var result = matches.Any() ? (PatternMatch?)matches.First() : null;
matches.Free();
return result;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册