System.CodeDom 9.0.2
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 |
---|---|
DevExpress.CodeParser
This package provides utilities for code parsing and generation. Generally, it should not be used directly in your applications.
|
27 |
DevExpress.Reporting.Core
This package implements core functionality for DevExpress XtraReports Suite.
|
27 |
DevExpress.Web.Reporting.Common
This package provides common cross-platform functionality to DevExpress Web Reporting controls.
|
27 |
DevExpress.Blazor.Reporting.Viewer
This package implements the functionality related to the native Blazor DevExpress Report Viewer component.
|
19 |
DevExpress.Blazor.Reporting.JSBasedControls.Common
This package contains common settings and client-side resources for the JavaScript-based Blazor Reporting components.
|
18 |
DevExpress.CodeParser
This package provides utilities for code parsing and generation. Generally, it should not be used directly in your applications.
|
18 |
DevExpress.Reporting.Core
This package implements core functionality for DevExpress XtraReports Suite.
|
18 |
DevExpress.Web.Reporting.Common
This package provides common cross-platform functionality to DevExpress Web Reporting controls.
|
18 |
DevExpress.Blazor.Reporting.JSBasedControls.WebAssembly
This package contains the Report Designer and Document Viewer components for Blazor WebAssembly applications.
|
17 |
DevExpress.AspNetCore.Reporting
This package implements the functionality related to the DevExpress Report Designer and Report Viewer ASP.NET Core controls.
|
16 |
DevExpress.CodeParser
This package provides utilities for code parsing and generation. Generally, it should not be used directly in your applications.
|
15 |
DevExpress.Reporting.Core
This package implements core functionality for DevExpress XtraReports Suite.
|
15 |
DevExpress.Web.Reporting.Common
This package provides common cross-platform functionality to DevExpress Web Reporting controls.
|
15 |
DevExpress.Blazor.Reporting.JSBasedControls.Common
This package contains common settings and client-side resources for the JavaScript-based Blazor Reporting components.
|
14 |
DevExpress.Blazor.Reporting.Viewer
This package implements the functionality related to the native Blazor DevExpress Report Viewer component.
|
14 |
DevExpress.Blazor.Reporting.JSBasedControls.BlazorServer
This package implements the functionality related to the JavaScript-based Report Designer and Viewer Blazor components.
|
13 |
DevExpress.CodeParser
This package provides utilities for code parsing and generation. Generally, it should not be used directly in your applications.
|
13 |
DevExpress.Reporting.Core
This package implements core functionality for DevExpress XtraReports Suite.
|
13 |
Mono.TextTemplating
Embeddable engine for the T4 templating language, a general-purpose way to generate text or code files using C#
|
9 |
DevExpress.Blazor.Reporting.JSBasedControls.BlazorServer
This package implements the functionality related to the JavaScript-based Report Designer and Viewer Blazor components.
|
4 |
.NET Framework 4.6.2
- No dependencies.
.NET 8.0
- No dependencies.
.NET 9.0
- No dependencies.
.NET Standard 2.0
- No dependencies.