Tagged Questions

CodeDOM is a framework which can be used to create an (abstract) expression tree representing real code structures (e.g. classes, statements, etc.) in a language independent way. This means if you construct an expression tree you can use (or write) code generators to output the same logical structure in multiple different target languages. Language generators exist for VB.Net, C#, and JScript, but you can also create your own.

learn more… | top users | synonyms

17
votes
6answers
9k views

Execute JavaScript from within a C# assembly

I'd like to execute JavaScript code from within a C# assembly and have the results of the JavaScript code returned to the calling C# code. It's easier to define things that I'm not trying to do: ...
14
votes
4answers
922 views

Microsoft Roslyn vs. CodeDom

From a press release yesterday on InfoWorld regarding the new Microsoft Roslyn: The most obvious advantage of this kind of "deconstructed" compiler is that it allows the entire compile-execute ...
12
votes
3answers
2k views

Reflection.Emit vs CodeDOM

What are some pros/cons for using the Reflection.Emit library versus CodeDOM for dynamically generating code at runtime? I am trying to generate some (relatively complicated) dynamic classes in a ...
8
votes
5answers
562 views

Parsing C# code (as string) and inserting additional methods

I have a C# app I'm working on that loads it's code remotely, and then runs it (for the sake of argument, you can assume the app is secure). The code is C#, but it is sent as an XML document, parse ...
7
votes
2answers
173 views

Why is JIT_MethodAccessAllowedBySecurity taking so much time?

I'm working on a C# application that allows users to basically import tables of data, and then enter their own formulas in a mini-language to compute new columns from the underlying data. These ...
7
votes
1answer
239 views

CodeDom and Silverlight

Can Silverlight apps (the .xap file, the testpage.html, content resources along side a ClientBin, out of browser settings, etc) be created using only System.CodeDom from a regular .NET app? Meaning I ...
7
votes
1answer
898 views

Unload CodeDom-compiled assembly

I have some C# code (let's call it "script") I am compiling at runtime. It uses an interface in my main program that I use to access its functions. Once compiling is done I have ...
7
votes
2answers
513 views

CodeDom generic type constraint

Is there a way to generate a class constraint with CodeDom. Because when I use something like var method = new CodeMemberMethod(); var genericParam = new CodeTypeParameter("InterfaceType"); ...
6
votes
3answers
207 views

Is it possible to debug code compiled at runtime?

I have a need to compile some code using CodeDomProvider.CompileAssemblyFromSource. How would one go about debugging it? Basically, I want to compile it, create instance of a type and then step into ...
6
votes
2answers
512 views

Interpreting and/or receiving dotNet code at run-time

Html can contain little bits of Javascript embedded in it (e.g. defined in onclick event handlers). If I were writing an Html browser using a dotNet language like C#, what technologies or APIs could ...
5
votes
1answer
126 views

Can I run a C# assembly (dll) as 32bit from a 64bit application?

I'm actually doing this with helper executables that are 32bit. But can I do it with DLLs that run on 32bit CodeDOM?
5
votes
4answers
206 views

Parser/Lexer/Programming Language Question

Okay, so I'm not good with all the terms and stuff, BUT here's what I have created thus far: 1: An app that reads character by character the contents of a source code file. And; 2: An app that ...
5
votes
4answers
669 views

Codedom and string handling

I've researched on this but couldn't find anything solid and wanted to see if someone can point me in the right direction. I'm trying to see if Codedom can handle strings and concantination between ...
5
votes
2answers
276 views

Is there a way to have CodeDom put using statements before the namespace

The msdn documentation says add namespaces imports to the CodeNamespace.Imports collection. This puts them inside the namespace (which makes sense, since your adding them to the namespace) namespace ...
5
votes
6answers
1k views

Dynamic code generation

I am currently developing an application where you can create "programs" with it without writing source code, just click&play if you like. Now the question is how do I generate an executable ...
5
votes
5answers
647 views

How to programmatically parse and modify C# code

What I want to do is to read C# code, parse it, insert some method calls and compile it finally. Now. Is it possible to convert C# source code (a list of strings) to CodeDOM objects?
5
votes
5answers
1k views

C# 4.0, detect if a method is missing

I have a situation where i want to add LinePragmas to CodeDom objects. But some code dom objects have the LinePragma property and some don't. So I'm wondering if it's possible to use the dynamic ...
5
votes
5answers
2k views

Work-around for C# CodeDom causing stack-overflow (CS1647) in csc.exe?

I've got a situation where I need to generate a class with a large string const. Code outside of my control causes my generated CodeDom tree to be emitted to C# source and then later compiled as part ...
5
votes
1answer
922 views

C# CodeDom Automatic Property

I have a property created with CodeDom. How can I set it to being an automatic property instead of adding CodeFieldReferenceExpressions against a private member?
5
votes
6answers
1k views

T4 vs CodeDom vs Oslo

In an application scaffolding project on which I'm working, I'm trying to decide whether to use Oslo, T4 or CodeDom for generating code. Our goals are to keep dependencies to a minimum and drive code ...
4
votes
2answers
78 views

How do I select the target framework of a CodeDom compiler using C#?

So I have a CodeDOM compiler written in C# that's supposed to compile another application based on one of its resources. How would I change the target .NET framework of the resource (or of the ...
4
votes
1answer
48 views

C# CodeDom Double Type Reference

I am able to make a call to some type by using CodeMethodInvokeExpression along with CodeTypeReferenceExpression, but I would like to be able to make a reference to the following line of code: ...
4
votes
1answer
146 views

Can CodeDom create optional arguments when generating a c# method?

Can CodeDom create optional arguments when generating a c# method and provide a default value? For example: public void ExampleMethod(int required , string optionalstr = ...
4
votes
2answers
95 views

Removing items in code generated from Codedom

Is there a way to remove items in code generated in Codedom from VB code? For example at the top of all the code I generate, it has: ...
4
votes
2answers
893 views

C# 4.0: Expression trees vs. CodeDom

What are the differences between Expression trees and CodeDom? Which should I use for which scenario?
4
votes
5answers
918 views

Java Code Generation (Metaprogramming, Reflection, wtv)

Does anyone knows a tool for Java (something like codedom for C#) that provides a way to generate Java code to a .java file? EDIT: I'm building a plataform that its main objective his to automate an ...
4
votes
2answers
361 views

How to add a partial method without an implementation using CodeDom

internal List<CodeMemberMethod> createEventHooks() { string[] eventNames = new string[] { "OnUpdate", "OnInsert", "OnDelete", "OnSelect", "OnSelectAll" }; ...
4
votes
2answers
349 views

C# String representation of method

Is there a way in .NET 3.0 (or earlier) to get a string representation of a method? I know that I can get an IL byte array from a MethodBody object, but I'm interested in getting a string that ...
3
votes
3answers
140 views

What is the most interesting and promising approach to implement a compiler in C#?

I am just in the beginning of my graduation project that is supposed to last for 6 months. The goal of the project is to implement a .Net-compiler for one scripting language. I had the Compiler ...
3
votes
2answers
174 views

Generate Extension Methods using System.CodeDom

Has anyone ever tried to generate extension methods using System.CodeDom under .NET 4.0? There doesn't seem to be any way to specify a CodeMemberMethod or CodeParameterDeclarationExpression as being ...
3
votes
1answer
76 views

setting private properties of classes

I have some very old code which uses reflection to set properties of objects, e.g something like this: var properties = obj.GetType().GetProperties( BindingFlags.Public | BindingFlags.NonPublic | ...
3
votes
4answers
348 views

C# - Code compiler for .NET & CF.NET

I've a same project that need to be compiled with .NET and Compact .NET Framework. It is possible to create a C# compiler that will compile my project with both framework ? Some feature aren't ...
3
votes
1answer
159 views

Newly built C# Assembly's access to predefined functions

Okay I will first admit I don't know the proper terminology for all this so I apologize if this is addressed already and I just am not using the appropriate words. I'm trying to make a program in C# ...
3
votes
2answers
463 views

CodeDom : compile partial class

I'm attempting to compile code in a text file to change a value in a TextBox on the main form of a WinForms application. Ie. add another partial class with method to the calling form. The form has one ...
3
votes
1answer
732 views

creating enumeration using .NET's CodeDom

I want to create an Enumeration using CodeDom API. I have searched enough on the internet and I get results which are hardly of any use. What I want to generate is public enum bug_tracker_type { ...
3
votes
2answers
295 views

Is it possible to call C# lexical/syntactic analyzers without compilation?

Considering this question of SO, where whole C# in-memory compiler is being called. When only lexical and syntactic analyzing is required: parse text as a stream of lexemes, check them and exit. Is ...
3
votes
1answer
467 views

Which .NET Programming Languages Have a CodeDom Provider?

Aside from C#, VB.NET, C++ (Managed and C++/CLI), and F#, which .NET programming languages have their own CodeDom provider?
3
votes
3answers
343 views

What controls version number inside codedom generated file?

What controls the version number inside of a codedom generated file? Some of our developers get: //------------------------------------------------------------------------------ // ...
3
votes
1answer
268 views

Does a CodeDom Visual Basic .NET parser exist?

Does somebody know if someone has created a Visual basic parser to CodeDom (ie, it takes VB.NET as input and create a CodeCompileUnit graph) ? SOLUTION I've retrieved the source code of ...
3
votes
3answers
967 views

Using .NET CodeDOM to declare and initialize a field in one statement

I want to use CodeDOM to both declare and initialize my static field in one statement. How can I do this? // for example public static int MyField = 5; I can seem to figure out how to declare a ...
2
votes
1answer
90 views

How to make user-entered C# code safe?

I am building a conditional formatting feature, where the user can enter an expression like someFieldValue == "someValue" And we apply formatting based on the result of that expression. The ...
2
votes
1answer
57 views

Create a method which matches a reflected type

I am utilising a 3rd party .net dll, which I am making calls to. I am simplifying my code, but it's something like this. // The assembly has already been loaded into 'ass' Type params = ...
2
votes
3answers
75 views

Want to use COM dll file on deployed machines without registering dll files

I will make this very simple, as it can get quite confusing very quickly. I have a COM dll (made in VB6) that I would like to be able to use through my C# application. Below are the steps I have ...
2
votes
0answers
66 views

CodeDom Reference VB6 dll

I have had no problems adding .dll files (generated from Visual Studio) to a CodeDom generated executable file. To do so, I have been using the following code: Code: string[] referenceAssemblies = { ...
2
votes
1answer
85 views

Need to Initialize new instance of object

The following code: CodeVariableDeclarationStatement variableDeclaration = new CodeVariableDeclarationStatement( // Type of the variable to declare. typeof(string), ...
2
votes
1answer
63 views

CodeDom Nested Array

As the title suggests, I am trying to "nest" - or create an array within an array in C# using CodeDom. Here is the line that I am trying to replicate: T.Invoke(null, new object[] { new string[] {} } ...
2
votes
1answer
106 views

C# Using CodeDom to add variables as part of a class

I am attempting to create the following code through the use of CodeDom: public partial class mainClass { public byte[] bytes = null; } I have no problem creating the class, and I found ways to ...
2
votes
1answer
62 views

CppCodeGenerator parse managed C++

I am looking to parse managed C++ files into a CodeDOM tree (or any other c# representation, for that matter). I see that CppCodeGenerator has been removed in .NET4, and it does not provide a ...
2
votes
1answer
102 views

Specifying a type alias using CodeDom

I am dynamically generating some c# code using the CodeDom. I want to ad a type alias to the namespace. Something like: namespace MyNameSpace { using Timer = System.Threading.Timer; ... } ...
2
votes
2answers
239 views

Confusing implementation of F# CodeDom

I'm trying to create a class and a method in it. For C# and VB, the CodeDom providers emit preditable output, but the F# CodeDom provider emits the following. I'm wondering why. exception ...

1 2 3 4