System.CodeDom 9.0.0

About

Provides functionality for dynamically generating and compiling source code using the Code Document Object Model (CodeDOM).

It allows developers to represent code in a language-agnostic format and then generate code in multiple languages, such as C# and VB.NET. The primary use cases include creating dynamic code generation tools, runtime code generation, and facilitating code analysis or transformation.

For a new modern development consider using the .NET Compiler Platform SDK, in particular Roslyn source generators.

Key Features

  • Write code using a common object model that can be translated into multiple programming languages.
  • Generate and compile code at runtime based on the CodeDOM.

How to Use

Generating and compiling C# code:

using System.CodeDom;
using System.CodeDom.Compiler;
using Microsoft.CSharp;

// Create a new CodeCompileUnit to hold the code
var compileUnit = new CodeCompileUnit();

// Create a namespace
var codeNamespace = new CodeNamespace("MyNamespace");
compileUnit.Namespaces.Add(codeNamespace);

// Create a class
var classDeclaration = new CodeTypeDeclaration("MyClass")
{
    IsClass = true
};
codeNamespace.Types.Add(classDeclaration);

// Add a simple method to the class
var method = new CodeMemberMethod
{
    Name = "HelloWorld",
    ReturnType = new CodeTypeReference(typeof(void)),
};
classDeclaration.Members.Add(method);

var methodInvocation = new CodeMethodInvokeExpression(new CodeTypeReferenceExpression("Console"),
                                                      "WriteLine",
                                                      new CodePrimitiveExpression("Hello, World!"));
method.Statements.Add(methodInvocation);

// Generate C# code from the CodeDOM structure
CodeDomProvider provider = new CSharpCodeProvider();

using (var writer = new StringWriter())
{
    var codeGenereationOptions = new CodeGeneratorOptions()
    {
        BlankLinesBetweenMembers = false,
        IndentString = "  ",
    };

    provider.GenerateCodeFromCompileUnit(compileUnit, writer, codeGenereationOptions);
    Console.WriteLine(writer.GetStringBuilder().ToString());
}

This example generates:

//------------------------------------------------------------------------------
// <auto-generated>
//     This code was generated by a tool.
//
//     Changes to this file may cause incorrect behavior and will be lost if
//     the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

namespace MyNamespace {

  public class MyClass {
    private void HelloWorld() {
      Console.WriteLine("Hello, World!");
    }
  }
}

Main Types

The main types provided by this library are:

  • System.CodeDom.CodeObject
  • System.CodeDom.CodeCompileUnit
  • System.CodeDom.CodeNamespace
  • System.CodeDom.CodeTypeDeclaration
  • System.CodeDom.CodeMemberMethod
  • System.CodeDom.CodeTypeReference
  • System.CodeDom.CodeMethodInvokeExpression
  • System.CodeDom.CodeTypeReferenceExpression
  • System.CodeDom.CodePrimitiveExpression
  • System.CodeDom.Compiler.CodeDomProvider
  • System.CodeDom.Compiler.CodeGeneratorOptions
  • Microsoft.CSharp.CSharpCodeProvider
  • Microsoft.VisualBasic.VBCodeProvider

Additional Documentation

Feedback & Contributing

System.CodeDom is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Showing the top 20 packages that depend on System.CodeDom.

Packages Downloads
EntityFramework
Entity Framework 6 (EF6) is a tried and tested object-relational mapper for .NET with many years of feature development and stabilization.
53
EntityFramework
Entity Framework 6 (EF6) is a tried and tested object-relational mapper for .NET with many years of feature development and stabilization.
56
EntityFramework
Entity Framework 6 (EF6) is a tried and tested object-relational mapper for .NET with many years of feature development and stabilization.
58
Microsoft.Build.Tasks.Core
This package contains the Microsoft.Build.Tasks assembly which implements the commonly used tasks of MSBuild.
55
Microsoft.CodeAnalysis.Workspaces.MSBuild
.NET Compiler Platform ("Roslyn") support for analyzing MSBuild projects and solutions. This should be used with at least one of the following packages to add the appropriate language support: - Microsoft.CodeAnalysis.CSharp.Workspaces - Microsoft.CodeAnalysis.VisualBasic.Workspaces More details at https://aka.ms/roslyn-packages This package was built from the source at https://github.com/dotnet/roslyn/commit/2b7d172669b2f7e55803b55f317cfcc2d4279d76.
84
Microsoft.CodeAnalysis.Workspaces.MSBuild
.NET Compiler Platform ("Roslyn") support for analyzing MSBuild projects and solutions. This should be used with at least one of the following packages to add the appropriate language support: - Microsoft.CodeAnalysis.CSharp.Workspaces - Microsoft.CodeAnalysis.VisualBasic.Workspaces More details at https://aka.ms/roslyn-packages This package was built from the source at https://github.com/dotnet/roslyn/commit/be9c072e1c8a9e6701e34d796b1d68098d08feab.
53
Microsoft.CodeAnalysis.Workspaces.MSBuild
.NET Compiler Platform ("Roslyn") support for analyzing MSBuild projects and solutions. This should be used with at least one of the following packages to add the appropriate language support: - Microsoft.CodeAnalysis.CSharp.Workspaces - Microsoft.CodeAnalysis.VisualBasic.Workspaces More details at https://aka.ms/roslyn-packages This package was built from the source at https://github.com/dotnet/roslyn/commit/bf8791d0d1be92c24e56cefa52aa139e2b5340c2.
73
Microsoft.CodeAnalysis.Workspaces.MSBuild
.NET Compiler Platform ("Roslyn") support for analyzing MSBuild projects and solutions. This should be used with at least one of the following packages to add the appropriate language support: - Microsoft.CodeAnalysis.CSharp.Workspaces - Microsoft.CodeAnalysis.VisualBasic.Workspaces More details at https://aka.ms/roslyn-packages This package was built from the source at https://github.com/dotnet/roslyn/commit/fa72fa61b0d822ea8a3fbeb96f668340419ab5cd.
107
Microsoft.Windows.Compatibility
This Windows Compatibility Pack provides access to APIs that were previously available only for .NET Framework. It can be used from both .NET Core as well as .NET Standard. When using NuGet 3.x this package requires at least version 3.4.
53
Microsoft.Windows.Compatibility
This Windows Compatibility Pack provides access to APIs that were previously available only for .NET Framework. It can be used from both .NET Core as well as .NET Standard. When using NuGet 3.x this package requires at least version 3.4.
736
Mono.TextTemplating
Embeddable engine for the T4 templating language, a general-purpose way to generate text or code files using C#
53
SoapCore
SOAP protocol middleware for ASP.NET Core
56
SoapCore
SOAP protocol middleware for ASP.NET Core
57
SoapCore
SOAP protocol middleware for ASP.NET Core
93
SoapCore
SOAP protocol middleware for ASP.NET Core
194
System.Management
Provides access to a rich set of management information and management events about the system, devices, and applications instrumented to the Windows Management Instrumentation (WMI) infrastructure. Commonly Used Types: System.Management.ManagementClass System.Management.ManagementObject System.Management.SelectQuery
55
System.Management
Provides access to a rich set of management information and management events about the system, devices, and applications instrumented to the Windows Management Instrumentation (WMI) infrastructure. Commonly Used Types: System.Management.ManagementClass System.Management.ManagementObject System.Management.SelectQuery
57
System.Management
Provides access to a rich set of management information and management events about the system, devices, and applications instrumented to the Windows Management Instrumentation (WMI) infrastructure. Commonly Used Types: System.Management.ManagementClass System.Management.ManagementObject System.Management.SelectQuery
67
System.Management
Provides access to a rich set of management information and management events about the system, devices, and applications instrumented to the Windows Management Instrumentation (WMI) infrastructure. Commonly Used Types: System.Management.ManagementClass System.Management.ManagementObject System.Management.SelectQuery When using NuGet 3.x this package requires at least version 3.4.
55
System.Management.Automation
Runtime for hosting PowerShell
62

https://go.microsoft.com/fwlink/?LinkID=799421

.NET Framework 4.6.2

  • No dependencies.

.NET 8.0

  • No dependencies.

.NET 9.0

  • No dependencies.

.NET Standard 2.0

  • No dependencies.

Version Downloads Last updated
10.0.0 31 11/13/2025
10.0.0-rc.2.25502.107 17 10/22/2025
10.0.0-rc.1.25451.107 21 09/15/2025
10.0.0-preview.7.25380.108 23 08/14/2025
10.0.0-preview.6.25358.103 26 07/17/2025
10.0.0-preview.5.25277.114 39 06/08/2025
10.0.0-preview.4.25258.110 24 05/17/2025
10.0.0-preview.3.25171.5 40 04/15/2025
10.0.0-preview.2.25163.2 26 03/30/2025
10.0.0-preview.1.25080.5 25 03/06/2025
9.0.11 17 11/13/2025
9.0.10 34 10/19/2025
9.0.9 27 09/14/2025
9.0.8 24 08/10/2025
9.0.7 37 07/10/2025
9.0.6 39 06/15/2025
9.0.5 30 05/18/2025
9.0.4 54 04/15/2025
9.0.3 32 03/14/2025
9.0.2 35 02/18/2025
9.0.1 35 01/25/2025
9.0.0 57 12/02/2024
9.0.0-rc.2.24473.5 36 11/05/2024
9.0.0-rc.1.24431.7 46 12/06/2024
9.0.0-preview.7.24405.7 32 11/15/2024
9.0.0-preview.6.24327.7 30 11/09/2024
9.0.0-preview.5.24306.7 43 12/02/2024
9.0.0-preview.4.24266.19 30 06/01/2024
9.0.0-preview.3.24172.9 45 05/10/2024
9.0.0-preview.2.24128.5 34 05/02/2024
9.0.0-preview.1.24080.9 36 05/24/2024
8.0.0 59 12/10/2023
8.0.0-rc.2.23479.6 58 05/10/2024
8.0.0-rc.1.23419.4 44 06/02/2024
8.0.0-preview.7.23375.6 40 05/10/2024
8.0.0-preview.6.23329.7 54 08/08/2023
8.0.0-preview.5.23280.8 44 05/10/2024
8.0.0-preview.4.23259.5 28 05/10/2024
8.0.0-preview.3.23174.8 40 05/24/2024
8.0.0-preview.2.23128.3 48 05/10/2024
8.0.0-preview.1.23110.8 50 05/10/2024
7.0.0 42 05/10/2024
7.0.0-rc.2.22472.3 37 05/14/2024
7.0.0-rc.1.22426.10 39 06/02/2024
7.0.0-preview.7.22375.6 34 05/24/2024
7.0.0-preview.6.22324.4 46 05/10/2024
7.0.0-preview.5.22301.12 35 06/02/2024
7.0.0-preview.4.22229.4 37 05/24/2024
7.0.0-preview.3.22175.4 29 05/10/2024
7.0.0-preview.2.22152.2 55 04/20/2022
7.0.0-preview.1.22076.8 35 05/24/2024
6.0.2-mauipre.1.22102.15 36 06/02/2024
6.0.2-mauipre.1.22054.8 30 05/24/2024
6.0.0 250 04/20/2022
6.0.0-rc.2.21480.5 55 06/02/2024
6.0.0-rc.1.21451.13 37 05/01/2024
6.0.0-preview.7.21377.19 49 05/03/2022
6.0.0-preview.6.21352.12 28 06/02/2024
6.0.0-preview.5.21301.5 36 05/24/2024
6.0.0-preview.4.21253.7 46 05/24/2024
6.0.0-preview.3.21201.4 32 05/24/2024
6.0.0-preview.2.21154.6 43 05/24/2024
6.0.0-preview.1.21102.12 29 06/02/2024
5.0.0 867 05/05/2022
5.0.0-rc.2.20475.5 31 11/28/2024
5.0.0-rc.1.20451.14 34 06/02/2024
5.0.0-preview.8.20407.11 39 06/02/2024
5.0.0-preview.7.20364.11 44 06/02/2024
5.0.0-preview.6.20305.6 48 05/24/2024
5.0.0-preview.5.20278.1 47 05/24/2024
5.0.0-preview.4.20251.6 29 11/10/2024
5.0.0-preview.3.20214.6 46 11/25/2024
5.0.0-preview.2.20160.6 42 05/24/2024
5.0.0-preview.1.20120.5 29 05/24/2024
4.7.0 1,670 04/20/2022
4.7.0-preview3.19551.4 36 05/24/2024
4.7.0-preview2.19523.17 43 05/24/2024
4.7.0-preview1.19504.10 35 05/24/2024
4.6.0 33 11/25/2024
4.6.0-rc1.19456.4 31 06/02/2024
4.6.0-preview9.19421.4 37 05/24/2024
4.6.0-preview9.19416.11 40 05/24/2024
4.6.0-preview8.19405.3 38 05/24/2024
4.6.0-preview7.19362.9 34 05/24/2024
4.6.0-preview6.19303.8 43 05/24/2024
4.6.0-preview6.19264.9 42 05/24/2024
4.6.0-preview5.19224.8 52 05/24/2024
4.6.0-preview4.19212.13 53 05/24/2024
4.6.0-preview3.19128.7 44 05/22/2024
4.6.0-preview.19073.11 44 05/05/2024
4.6.0-preview.18571.3 41 05/24/2024
4.5.0 83 06/15/2022
4.5.0-rc1 37 06/01/2024
4.5.0-preview2-26406-04 55 05/24/2024
4.5.0-preview1-26216-02 39 05/24/2024
4.5.0-preview1-25914-04 32 05/24/2024
4.4.0 49 04/20/2022
4.4.0-preview2-25405-01 53 05/24/2024
4.4.0-preview1-25305-02 33 05/24/2024