Tagged Questions
The csharpcodeprovider tag has no wiki summary.
4
votes
1answer
62 views
Is it possible to target the .net4 compiler from a .net3.5 app with a CSharpCodeProvider?
I'm trying to compile a .cs file using a CSharpCodeProvider from a .net 3.5 app and I want to target the .net4 compiler but I'm getting this error "Compiler executable file csc.exe cannot be found". I ...
2
votes
2answers
115 views
Can an application compile and create another application? [closed]
Possible Duplicate:
How to programatically build and compile another c# project from the current project
Lets say we have an application named Program1.exe so when i click that exe that ...
1
vote
1answer
20 views
Compiling Partial Classes with CSharpCodeProvider
I have a code template which builds files in a project's folder, and uses the properties defined in the partial classes to determine which properties still need to be implemented. As an example:
...
0
votes
6answers
111 views
Convert ArrayList into string array(string[]) in c#
How can I convert ArrayList into string[] in C#?