System.CodeDom 10.0.0-rc.2.25502.107
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.CodeObjectSystem.CodeDom.CodeCompileUnitSystem.CodeDom.CodeNamespaceSystem.CodeDom.CodeTypeDeclarationSystem.CodeDom.CodeMemberMethodSystem.CodeDom.CodeTypeReferenceSystem.CodeDom.CodeMethodInvokeExpressionSystem.CodeDom.CodeTypeReferenceExpressionSystem.CodeDom.CodePrimitiveExpressionSystem.CodeDom.Compiler.CodeDomProviderSystem.CodeDom.Compiler.CodeGeneratorOptionsMicrosoft.CSharp.CSharpCodeProviderMicrosoft.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 | 
|---|---|
| 
                                                    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. 
                                                 | 
                                                27 | 
| 
                                                    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 as well as .NET Standard. 
                                                 | 
                                                26 | 
| 
                                                    EntityFramework
                                                     Entity Framework 6 (EF6) is a tried and tested object-relational mapper for .NET with many years of feature development and stabilization. 
                                                 | 
                                                25 | 
| 
                                                    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. 
                                                 | 
                                                25 | 
| 
                                                    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
 
30ab651fcb4354552bd4891619a0bdd81e0ebdbf 
When using NuGet 3.x this package requires at least version 3.4. 
                                                 | 
                                                24 | 
| 
                                                    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. 
                                                 | 
                                                24 | 
| 
                                                    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 as well as .NET Standard. 
                                                 | 
                                                24 | 
| 
                                                    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. 
                                                 | 
                                                24 | 
| 
                                                    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. 
6c6b536dffb4da0c45ff14921bfee10265265050 
When using NuGet 3.x this package requires at least version 3.4. 
                                                 | 
                                                24 | 
| 
                                                    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. 
                                                 | 
                                                23 | 
| 
                                                    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 
                                                 | 
                                                23 | 
| 
                                                    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 as well as .NET Standard. 
                                                 | 
                                                23 | 
| 
                                                    Mono.TextTemplating
                                                     Embeddable engine for the T4 templating language, a general-purpose way to generate text or code files using C# 
                                                 | 
                                                23 | 
| 
                                                    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. 
                                                 | 
                                                23 | 
| 
                                                    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. 
                                                 | 
                                                23 | 
| 
                                                    SpecFlow.CustomPlugin
                                                     Package for writing custom generator extensions for SpecFlow. 
                                                 | 
                                                23 | 
.NET Framework 4.6.2
- No dependencies.
 
.NET 8.0
- No dependencies.
 
.NET 9.0
- No dependencies.
 
.NET 10.0
- No dependencies.
 
.NET Standard 2.0
- No dependencies.