Ecng.Compilation 1.0.252

There is a newer version of this package available.
See the version list below for details.
dotnet add package Ecng.Compilation --version 1.0.252
                    
NuGet\Install-Package Ecng.Compilation -Version 1.0.252
                    
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="Ecng.Compilation" Version="1.0.252" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Ecng.Compilation" Version="1.0.252" />
                    
Directory.Packages.props
<PackageReference Include="Ecng.Compilation" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Ecng.Compilation --version 1.0.252
                    
#r "nuget: Ecng.Compilation, 1.0.252"
                    
#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.
#:package Ecng.Compilation@1.0.252
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Ecng.Compilation&version=1.0.252
                    
Install as a Cake Addin
#tool nuget:?package=Ecng.Compilation&version=1.0.252
                    
Install as a Cake Tool

Ecng.Compilation

Dynamic code compilation infrastructure for C#, F#, and Python. Compile code at runtime, manage references, and cache assemblies.

Overview

This library provides a unified interface for runtime code compilation supporting multiple languages through specialized providers.

Core Types

ICompiler Interface

The main abstraction for compilers.

public interface ICompiler
{
    string Extension { get; }           // e.g., ".cs", ".fs", ".py"
    bool IsAssemblyPersistable { get; } // Can save compiled assembly
    bool IsTabsSupported { get; }       // Language supports tabs
    bool IsCaseSensitive { get; }       // Language is case-sensitive
    bool IsReferencesSupported { get; } // Supports external references

    ICompilerContext CreateContext();

    Task<CompilationResult> Compile(
        string name,
        IEnumerable<string> sources,
        IEnumerable<(string name, byte[] body)> refs,
        CancellationToken ct = default);

    Task<CompilationError[]> Analyse(
        object analyzer,
        IEnumerable<object> analyzerSettings,
        string name,
        IEnumerable<string> sources,
        IEnumerable<(string name, byte[] body)> refs,
        CancellationToken ct = default);
}

CompilationResult

Result of a compilation operation.

var result = await compiler.Compile("MyCode", sources, references);

if (result.HasErrors)
{
    foreach (var error in result.Errors)
    {
        Console.WriteLine($"{error.Type}: {error.Message}");
        Console.WriteLine($"  Line {error.Line}, Column {error.Column}");
    }
}
else
{
    // Get compiled assembly
    Assembly assembly = result.Assembly;

    // Or get as bytes for storage
    byte[] assemblyBytes = result.AssemblyBytes;
}

CompilationError

Represents a compilation error or warning.

public class CompilationError
{
    public CompilationErrorTypes Type { get; }  // Error, Warning, Info
    public string Id { get; }                    // e.g., "CS0001"
    public string Message { get; }
    public int Line { get; }
    public int Column { get; }
}

Reference Types

AssemblyReference

Reference to a .NET assembly.

// From file path
var fileRef = new AssemblyReference("path/to/assembly.dll");

// From loaded assembly
var loadedRef = new AssemblyReference(typeof(SomeClass).Assembly);

NuGetReference

Reference to a NuGet package.

var nugetRef = new NuGetReference
{
    PackageId = "Newtonsoft.Json",
    Version = "13.0.1"
};

Compiler Provider

Manages available compilers and provides access to them.

// Get registered compilers
IEnumerable<ICompiler> compilers = CompilerProvider.Compilers;

// Get compiler by extension
ICompiler csCompiler = CompilerProvider.GetCompiler(".cs");
ICompiler fsCompiler = CompilerProvider.GetCompiler(".fs");
ICompiler pyCompiler = CompilerProvider.GetCompiler(".py");

Compiler Implementations

Package Language Extension
Ecng.Compilation.Roslyn C# .cs
Ecng.Compilation.FSharp F# .fs
Ecng.Compilation.Python Python .py

Expression Formulas

Parse and evaluate mathematical expressions at runtime.

using Ecng.Compilation.Expressions;

// Parse expression
var formula = ExpressionHelper.Parse("(a + b) * 2");

// Get variables used
IEnumerable<string> vars = formula.Variables; // ["a", "b"]

// Evaluate with values
var values = new Dictionary<string, decimal>
{
    ["a"] = 10,
    ["b"] = 5
};
decimal result = formula.Calculate(values); // 30

Supported Operations

  • Arithmetic: +, -, *, /, %
  • Comparison: <, >, <=, >=, ==, !=
  • Logical: &&, ||, !
  • Functions: abs, sqrt, min, max, pow, etc.

Assembly Load Context

Manage assembly loading for isolation.

using Ecng.Compilation;

// Track loaded assemblies
var tracker = new AssemblyLoadContextTracker();

// Load assembly in isolated context
var context = tracker.CreateContext("MyPlugin");
Assembly asm = context.LoadFromAssemblyPath("plugin.dll");

// Unload when done
tracker.Unload("MyPlugin");

Compiler Cache

Cache compiled assemblies for reuse.

public interface ICompilerCache
{
    bool TryGet(string key, out byte[] assembly);
    void Set(string key, byte[] assembly);
    void Remove(string key);
    void Clear();
}

Usage Examples

Compile C# Code

var compiler = CompilerProvider.GetCompiler(".cs");

string code = @"
public class Calculator
{
    public int Add(int a, int b) => a + b;
}";

var result = await compiler.Compile(
    name: "Calculator",
    sources: new[] { code },
    refs: Array.Empty<(string, byte[])>());

if (!result.HasErrors)
{
    var type = result.Assembly.GetType("Calculator");
    var instance = Activator.CreateInstance(type);
    var method = type.GetMethod("Add");
    int sum = (int)method.Invoke(instance, new object[] { 2, 3 });
    Console.WriteLine(sum); // 5
}

Compile with References

var refs = new List<(string, byte[])>();

// Add reference
var asmBytes = File.ReadAllBytes("MyLibrary.dll");
refs.Add(("MyLibrary.dll", asmBytes));

var result = await compiler.Compile("MyCode", sources, refs);

NuGet

Install-Package Ecng.Compilation
Install-Package Ecng.Compilation.Roslyn   # For C# support
Install-Package Ecng.Compilation.FSharp   # For F# support
Install-Package Ecng.Compilation.Python   # For Python support
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (6)

Showing the top 5 NuGet packages that depend on Ecng.Compilation:

Package Downloads
StockSharp.Algo

Trading algorithms. More info on web site https://stocksharp.com/store/

Ecng.Compilation.Roslyn

Ecng system framework

Ecng.Roslyn

Ecng system framework

Ecng.Compilation.Python

Ecng system framework

Ecng.Compilation.FSharp

Ecng system framework

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Ecng.Compilation:

Repository Stars
StockSharp/StockSharp
Algorithmic trading and quantitative trading open source platform to develop trading robots (stock markets, forex, crypto, bitcoins, and options).
Version Downloads Last Updated
1.0.253 0 12/24/2025
1.0.252 90 12/22/2025
1.0.251 98 12/21/2025
1.0.250 250 12/19/2025
1.0.249 245 12/19/2025
1.0.248 369 12/17/2025
1.0.247 401 12/16/2025
1.0.246 322 12/15/2025
1.0.245 310 12/15/2025
1.0.244 280 12/14/2025
1.0.243 218 12/14/2025
1.0.242 227 12/13/2025
1.0.241 217 12/13/2025
1.0.240 213 12/12/2025
1.0.239 176 12/12/2025
1.0.238 180 12/12/2025
1.0.237 176 12/12/2025
1.0.236 172 12/12/2025
1.0.235 181 12/12/2025
1.0.234 173 12/12/2025
1.0.233 851 12/2/2025
1.0.232 737 12/2/2025
1.0.231 736 12/2/2025
1.0.230 354 11/30/2025
1.0.229 196 11/29/2025
1.0.228 202 11/28/2025
1.0.227 205 11/28/2025
1.0.226 265 11/27/2025
1.0.225 353 11/24/2025
1.0.224 274 11/24/2025
1.0.223 275 11/23/2025
1.0.222 248 11/23/2025
1.0.221 333 11/22/2025
1.0.220 563 11/20/2025
1.0.219 512 11/18/2025
1.0.218 473 11/18/2025
1.0.217 468 11/13/2025
1.0.216 357 11/10/2025
1.0.215 1,242 11/1/2025
1.0.214 342 10/28/2025
1.0.213 347 10/27/2025
1.0.212 296 10/27/2025
1.0.211 227 10/25/2025
1.0.210 270 10/24/2025
1.0.209 471 10/20/2025
1.0.208 491 10/12/2025
1.0.207 259 10/11/2025
1.0.206 550 10/7/2025
1.0.205 371 10/6/2025
1.0.204 583 10/3/2025
1.0.203 389 10/1/2025
1.0.202 300 10/1/2025
1.0.201 325 9/30/2025
1.0.200 350 9/28/2025
1.0.199 385 9/25/2025
1.0.198 2,836 9/5/2025
1.0.197 398 9/2/2025
1.0.196 1,121 8/30/2025
1.0.195 377 8/30/2025
1.0.194 413 8/20/2025
1.0.193 303 8/20/2025
1.0.192 349 8/19/2025
1.0.191 367 8/15/2025
1.0.190 2,493 7/16/2025
1.0.189 771 7/14/2025
1.0.188 382 7/13/2025
1.0.187 322 7/13/2025
1.0.186 311 7/12/2025
1.0.185 643 7/8/2025
1.0.184 618 7/4/2025
1.0.183 360 7/2/2025
1.0.182 773 6/24/2025
1.0.181 1,392 6/16/2025
1.0.180 506 6/9/2025
1.0.179 396 6/8/2025
1.0.178 784 5/25/2025
1.0.177 360 5/21/2025
1.0.176 340 5/21/2025
1.0.175 304 5/17/2025
1.0.174 300 5/17/2025
1.0.173 312 5/17/2025
1.0.172 842 5/12/2025
1.0.171 432 5/12/2025
1.0.170 385 5/12/2025
1.0.169 334 5/11/2025
1.0.168 321 5/11/2025
1.0.167 298 5/10/2025
1.0.166 284 5/10/2025
1.0.165 307 5/3/2025
1.0.164 467 4/17/2025
1.0.163 427 4/15/2025
1.0.162 350 4/12/2025
1.0.161 384 4/9/2025
1.0.160 1,599 3/22/2025
1.0.159 370 3/20/2025
1.0.158 343 3/20/2025
1.0.157 341 3/19/2025
1.0.156 1,303 2/26/2025
1.0.155 325 2/26/2025
1.0.154 1,535 2/8/2025
1.0.153 316 2/8/2025
1.0.152 311 2/8/2025
1.0.151 329 2/6/2025
1.0.150 315 2/6/2025
1.0.149 331 2/6/2025
1.0.148 322 2/6/2025
1.0.147 311 2/6/2025
1.0.146 350 2/5/2025
1.0.145 340 2/5/2025
1.0.144 337 2/5/2025
1.0.143 368 2/3/2025
1.0.142 321 2/2/2025
1.0.141 333 2/1/2025
1.0.140 347 1/31/2025
1.0.139 335 1/30/2025
1.0.138 345 1/26/2025
1.0.137 440 1/21/2025
1.0.136 323 1/21/2025
1.0.135 355 1/20/2025
1.0.134 315 1/20/2025
1.0.133 413 1/19/2025
1.0.132 357 1/19/2025
1.0.131 463 1/17/2025
1.0.130 343 1/17/2025
1.0.129 394 1/14/2025
1.0.128 621 1/12/2025
1.0.127 406 1/12/2025
1.0.126 410 1/12/2025
1.0.125 425 1/12/2025
1.0.124 405 1/12/2025
1.0.123 380 1/12/2025
1.0.122 386 1/12/2025
1.0.121 402 1/11/2025
1.0.120 431 1/10/2025
1.0.119 442 1/10/2025
1.0.118 440 1/9/2025
1.0.117 364 1/9/2025
1.0.116 347 1/9/2025
1.0.115 363 1/9/2025
1.0.114 1,570 12/27/2024
1.0.113 406 12/19/2024
1.0.112 426 11/20/2024
1.0.111 1,249 11/18/2024
1.0.110 649 11/7/2024
1.0.109 292 11/7/2024
1.0.108 325 11/7/2024
1.0.107 294 11/7/2024
1.0.106 297 11/7/2024
1.0.105 290 11/7/2024
1.0.104 300 11/7/2024
1.0.103 321 11/6/2024
1.0.102 325 10/31/2024
1.0.101 414 10/19/2024
1.0.100 1,004 10/12/2024
1.0.99 655 10/9/2024
1.0.98 584 10/5/2024
1.0.97 1,283 9/18/2024
1.0.96 343 9/17/2024
1.0.95 1,022 9/3/2024
1.0.94 330 9/1/2024
1.0.93 1,504 8/8/2024
1.0.92 2,555 6/12/2024
1.0.91 791 5/28/2024
1.0.90 1,421 5/4/2024
1.0.89 1,016 4/23/2024
1.0.88 326 4/21/2024
1.0.87 377 4/14/2024
1.0.86 1,198 3/28/2024
1.0.85 393 3/17/2024
1.0.84 1,391 2/23/2024
1.0.83 364 2/23/2024
1.0.82 1,115 2/18/2024
1.0.81 310 2/18/2024
1.0.80 314 2/16/2024
1.0.79 952 2/13/2024
1.0.78 783 2/8/2024
1.0.77 1,052 2/5/2024
1.0.76 329 2/4/2024
1.0.75 1,067 1/23/2024
1.0.74 315 1/23/2024
1.0.73 1,029 1/12/2024
1.0.72 1,147 1/2/2024
1.0.71 368 12/29/2023
1.0.70 1,343 12/15/2023
1.0.69 432 12/15/2023
1.0.68 397 12/13/2023
1.0.67 424 12/13/2023
1.0.66 2,377 11/12/2023
1.0.65 436 11/10/2023
1.0.64 410 11/10/2023
1.0.63 405 11/9/2023
1.0.62 423 11/3/2023
1.0.61 428 11/1/2023
1.0.60 437 11/1/2023
1.0.59 4,132 9/8/2023
1.0.58 388 9/8/2023
1.0.57 391 9/8/2023
1.0.56 461 9/8/2023
1.0.55 420 9/8/2023
1.0.54 413 9/7/2023
1.0.53 520 9/3/2023
1.0.52 574 8/21/2023
1.0.51 560 8/15/2023
1.0.50 495 8/14/2023
1.0.49 475 8/14/2023
1.0.48 490 8/10/2023
1.0.47 3,835 7/1/2023
1.0.46 502 6/29/2023
1.0.45 2,081 5/27/2023
1.0.44 563 5/21/2023
1.0.43 588 5/19/2023
1.0.42 2,400 5/8/2023
1.0.41 611 5/1/2023
1.0.40 595 4/22/2023
1.0.39 591 4/21/2023
1.0.38 4,271 4/3/2023
1.0.37 714 3/27/2023
1.0.36 768 3/21/2023
1.0.35 745 3/13/2023
1.0.34 625 3/12/2023
1.0.33 669 3/11/2023
1.0.32 2,198 3/6/2023
1.0.31 744 2/26/2023
1.0.30 2,536 2/21/2023
1.0.29 735 2/20/2023
1.0.28 762 2/15/2023
1.0.27 772 2/14/2023
1.0.26 3,298 2/9/2023
1.0.25 2,398 2/7/2023
1.0.24 803 2/4/2023
1.0.23 2,545 2/2/2023
1.0.22 2,592 1/30/2023
1.0.21 846 1/18/2023
1.0.20 5,172 12/30/2022
1.0.19 862 12/23/2022
1.0.18 824 12/23/2022
1.0.17 22,926 12/12/2022
1.0.16 66,303 11/11/2022
1.0.15 2,664 11/11/2022
1.0.14 5,081 11/5/2022
1.0.13 29,155 11/1/2022
1.0.12 26,872 10/16/2022
1.0.11 58,822 9/8/2022
1.0.10 3,005 9/8/2022
1.0.9 2,952 9/8/2022
1.0.8 99,249 8/24/2022
1.0.7 17,163 7/26/2022
1.0.6 103,199 7/18/2022
1.0.5 111,246 4/30/2022
1.0.4 23,813 3/29/2022
1.0.3 462,416 12/29/2021
1.0.2 31,364 12/20/2021
1.0.1 63,321 12/6/2021
1.0.0 4,287 12/2/2021