FastExpressionCompiler.Net40 1.6.0

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package FastExpressionCompiler.Net40 --version 1.6.0
NuGet\Install-Package FastExpressionCompiler.Net40 -Version 1.6.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FastExpressionCompiler.Net40" Version="1.6.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FastExpressionCompiler.Net40 --version 1.6.0
#r "nuget: FastExpressionCompiler.Net40, 1.6.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install FastExpressionCompiler.Net40 as a Cake Addin
#addin nuget:?package=FastExpressionCompiler.Net40&version=1.6.0

// Install FastExpressionCompiler.Net40 as a Cake Tool
#tool nuget:?package=FastExpressionCompiler.Net40&version=1.6.0

The complete port of the FastExpressionCompiler assembly to support .NET Framework 4.0.
     You can refer (https://github.com/dadhi/FastExpressionCompiler) for more details.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated

v1.6.0
     - added: ExpressionInfo.ToString()
     - added: Overload to compile most generic ExpressionInfo to lambda
     - fixed: #49 Why the result is incorrect?
     - fixed: ExpressionInfo to Expression conversion in cirtain cases
     v1.5.0
     - added: #10 TryExpression support
     - added: #18 Support Expression.Block
     - added: #30 Expression.Assign for array indexer
     - added: #32 Support Expression.Condition
     - added: #35 Coalescence operator ??
     - added: #34 Arithmetic operations
     - added: #42 Add conversion from ExpressionInfo to Expression
     - added: FastCompile methods for ExpressionInfo
     - fixed: #44 Conversion to Nullable{T} throws InvalidProgramException
     - fixed: Creation of dynamic method for un-typed delegate
     v1.4.0:
     - added: NetStandard 2.0 target
     - added: #17: Expression(Info).Assign support for parameters, fields and members
     - added: Support for ExpressionInfo.Invoke
     v1.3.0:
     - added: #20 Allow ExpressionInfo.MemberInit for non-New expressions
     - fixed: #19 Nested CallExpression causes System.AccessViolationException
     - fixed: ValueType member access
     - fixed: False positive in TryCollectBoundConstants for not yet supported expression types
     v1.2.2:
     - fixed: #16: FastCompile with fallback could return null
     v1.2.1:
     - Lowering full .NET support to .NET 4.5
     v1.2.0:
     - fixed: #14, #15: Support general equality mechanism, e.g. Equals and equality operator
     - added: #11: Support for ExpressionInfo NewArray, MemberInit, ArrayIndex, Convert, MemberAccess
     - added: #12: Add extension method CompileFast to simplify migration from Compile
     - added: #13: Allow Expression as child of multi-child ExpressionInfo