Skip to content

Commit

Permalink
netstandard1.3 build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
VitaliyMF committed Jan 4, 2024
1 parent 94490a2 commit 3406c91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NReco.LambdaParser/Linq/LambdaParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ internal class ExtractParamsVisitor : ExpressionVisitor {


static readonly ConstructorInfo LambdaParameterWrapperConstructor =
typeof(LambdaParameterWrapper).GetTypeInfo().GetConstructor(new[] { typeof(object), typeof(LambdaParameterWrapperContext) });
typeof(LambdaParameterWrapper).GetConstructor(new[] { typeof(object), typeof(LambdaParameterWrapperContext) });

protected ParseVarResult ParseVar(string expr, int start, Variables vars) {
var varLexem = ReadLexem(expr, start);
Expand Down

0 comments on commit 3406c91

Please sign in to comment.