Click here to Skip to main content
15,884,425 members
Articles / Programming Languages / C#

Dynamic Code Generation Using CodeDOM

Rate me:
Please Sign up or sign in to vote.
4.46/5 (21 votes)
1 Jul 2007Ms-PL12 min read 100.3K   2.4K   67  
This article explains how CodeDOM can be used to generate code dynamcially and build it using dynamic code compilation. It also explains how to apply custom attributes.

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DynamicCodeGeneration.Base", "Base\Base\DynamicCodeGeneration.Base.csproj", "{B7B506EF-EE5C-4396-AB86-34B71E00109F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DynamicCodeGeneration.CodeGenerator", "CodeGenerator\DynamicCodeGeneration.CodeGenerator.csproj", "{A23AF3F9-FA06-4EE2-A11F-81CEB6359FFA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DynamicCodeGeneration.CustomAttributes", "CustomAttributes\DynamicCodeGeneration.CustomAttributes\DynamicCodeGeneration.CustomAttributes.csproj", "{C976C24D-F958-4883-A43A-9E8EC24BEB37}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{B7B506EF-EE5C-4396-AB86-34B71E00109F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{B7B506EF-EE5C-4396-AB86-34B71E00109F}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{B7B506EF-EE5C-4396-AB86-34B71E00109F}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{B7B506EF-EE5C-4396-AB86-34B71E00109F}.Release|Any CPU.Build.0 = Release|Any CPU
		{A23AF3F9-FA06-4EE2-A11F-81CEB6359FFA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{A23AF3F9-FA06-4EE2-A11F-81CEB6359FFA}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{A23AF3F9-FA06-4EE2-A11F-81CEB6359FFA}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{A23AF3F9-FA06-4EE2-A11F-81CEB6359FFA}.Release|Any CPU.Build.0 = Release|Any CPU
		{C976C24D-F958-4883-A43A-9E8EC24BEB37}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{C976C24D-F958-4883-A43A-9E8EC24BEB37}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{C976C24D-F958-4883-A43A-9E8EC24BEB37}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{C976C24D-F958-4883-A43A-9E8EC24BEB37}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
Web Developer
United States United States
I work with Proteans Software Solutions. Interests include software architecture, design patterns, agile, scrum development, automated acceptance testing, books, music, travel, movies...

Comments and Discussions