Skip to content

Commit

Permalink
Inlined method
Browse files Browse the repository at this point in the history
It is easier to read, it is a little lesss jumping around to figure out what overload call which one
  • Loading branch information
theraot committed Jan 29, 2021
1 parent 9c925c5 commit c4f57d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Framework.Core/System/Linq/Expressions/LambdaExpression.cs
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ public static Type GetFuncType(params Type[] typeArgs)
/// </returns>
public static Expression<TDelegate> Lambda<TDelegate>(Expression body, params ParameterExpression[]? parameters)
{
return Lambda<TDelegate>(body, false, (IEnumerable<ParameterExpression>?)parameters);
return Lambda<TDelegate>(body, null, false, (IEnumerable<ParameterExpression>?)parameters);
}

/// <summary>
Expand Down

0 comments on commit c4f57d7

Please sign in to comment.