We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b852bee + 9a8ece4 commit 30322e5Copy full SHA for 30322e5
src/FastExpressionCompiler/FastExpressionCompiler.cs
@@ -1005,8 +1005,10 @@ public class NestedLambdaForNonPassedParams
1005
public static FieldInfo NonPassedParamsField =
1006
typeof(NestedLambdaForNonPassedParams).GetField(nameof(NonPassedParams));
1007
1008
+#pragma warning disable CS0649
1009
public readonly object NestedLambda;
1010
public object[] NonPassedParams;
1011
+#pragma warning restore CS0649
1012
public NestedLambdaForNonPassedParams(object nestedLambda) => NestedLambda = nestedLambda;
1013
}
1014
0 commit comments