CodeDOM is a framework which can be used to create an (abstract) expression tree representing real code structures (for example, 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 ...
0
votes
0answers
12 views
How to costumize Methode when we generate code using Codedom
I am using CodeDOM to generating and Compile Source Code .
I would like to customize Methods so , I can generate similar source code .
namespace CodeDOMSample
{
using System;
public sealed ...
0
votes
0answers
27 views
Error With Resources And Codedom
When I add a resource to my project (codedom) and when I compile this:
File.WriteAllBytes("C:\Plugin.dll", My.Resources.Plugins)
I get the following error:
'Resources' is not a member of 'My'.
Is ...
0
votes
0answers
11 views
CodeDom Resources
How can i add multiple resources with the same name to the CodeDom Compiler.
every time i try i get this error Resource identifier 'MyResource.txt' has already been used in this assembly.
in Visual ...
1
vote
1answer
40 views
Method analysis using Reflection and CodeDom
The context of this question is too elaborate to describe here and will likely adversely affect responses so I am not including it. I want to assert certain things about a method in a unit test. Some ...
0
votes
1answer
20 views
csharpcodeprovider unable to compile when assembly added to gac
My solution structure in vs is as follows.
MyRuleEngineFramework
RulesEditor
MyRuleEngineFramework is a class library. RulesEditor is a winforms project. The latter references the former, however, ...
0
votes
1answer
51 views
how to avoid the brackets appearing in the generated method statement
I am trying to do an assign statement while trying to generate some c# code using codedom.
Here are the statements I wrote:
inputmethod.Name = "CaptureInput";
inputmethod.Attributes = ...
2
votes
1answer
29 views
Using a generic argument in a generic method parameter created by CodeDOM
I am trying to create a generic method through code dome where the generic argument is used in the method parameter, for example:
String.Join<T>(String, IEnumerable<T>)
I have a bit of ...
0
votes
1answer
29 views
How to cast a CodeDOM object into its correct type
I have some code that generates an array of tuples of CodeCompileUnit and CodeTypeDeclarations of different classes.
After I generate the array I want to be able to invoke and create an instance of a ...
1
vote
1answer
44 views
How to enable implicit line continuation in VBCodeProvider?
The following VB.NET code works when compiled from the Visual Studio:
Sub Main()
Dim source As Dictionary(Of String, Integer) = New Dictionary(Of String, Integer)
Dim result = From i In ...
0
votes
1answer
54 views
Using CodeDOM to source code and class file togther
i have created a form for a codeDOM compiler and it can compile my code if its in a single text file but i want to be able to compile the source code in the text file and a class thats in a text file ...
3
votes
1answer
73 views
How to express null coalescing operator using CodeDOM?
Let's say, I have following simplified type:
public class Model
{
public decimal? Result { get; set; }
}
How to express null coalescing operator using CodeDOM to generate C# code, is it ...
1
vote
1answer
29 views
How visual studio generates a class template?
When we add a new class in visual studio, we get a template code
namespace MyProject
{
class Class1
{
}
}
How visual studio generates this code? Does it use CodeDOM or T4Template or ...
0
votes
1answer
26 views
Adding resources and setting Exe description [duplicate]
I am generating C# code at runtime and compiling it with the CSharpCodeProvider The two problems I'm having are
How to add resources to the generated exe?
How to set the executable description (i.e ...
0
votes
0answers
34 views
Inconsistent line Endings in generating a file using SingleFileGenerator
I have created a Custom tool (SingleFile generator) using IVsSingleFileGenerator. Which takes "xyz.Resx" file as input and generate "xyz.Designer.resx.cs" file. This file can be generated on ...
0
votes
0answers
45 views
Is it possible to inject a class into the executing assembly at runtime?
I am experimenting with the CSharpCodeProvider .NET Code DOM class an I am able to compile an assembly and create an instance defined within the assembly, but I'm interested to know whether it is ...
1
vote
0answers
60 views
Creating a class with CodeTypeDeclaration and adding members to it
i am declaring a class with the help of CodeTypeDeclaration like this :
CodeTypeDeclaration targetClass = new CodeTypeDeclaration(sType);
I can add a constructor :
CodeConstructor constructor ...
3
votes
0answers
65 views
How do achieve Asymmetric Accessor Accessibility using CodeDom?
How can I achieve Asymmetric Accessor Accessibility using CodeDOM;
public string Name
{
get
{
return name;
}
protected set
{
name = value;
}
}
I found a ...
0
votes
0answers
10 views
Create a static class using CodeDom [duplicate]
I'm trying to create a static class using codedom using the code below:
var genClass = new CodeTypeDeclaration(className);
genClass.IsClass = true;
genClass.Attributes = MemberAttributes.Public | ...
0
votes
0answers
35 views
Jscript.NET parsing using CodeMemberField in C#
i have some questions regarding a parsing for a Jscript.NET file.
I will give some declarations examples :
const _sPS2Name = "not_used";
const _iCanChannel:byte = 1;
var WaitLessThanQT = 1;
...
0
votes
1answer
46 views
CodeDOM for creating classes from existing entity class
I used CodeDOM to generate a class (entity class) from a given database table. I used this tutorial and made my application. It's OK and working fine. By using codeDOM can I edit an existing entity ...
0
votes
1answer
66 views
How do I generate a constructor and the code within?
I'm using System.CodeDom to generate code. Can someone please tell me how I would create the code within a constructor.
The output that I want:
internal class CurrencyMap : ...
1
vote
3answers
69 views
How to validate namespace name in CodeDOM?
I found class name validation method using CodeDOM from SE and I used it:
System.CodeDom.Compiler.CodeGenerator.IsValidLanguageIndependentIdentifier(string value)
through this link:Is there a .NET ...
0
votes
2answers
75 views
How to create a private class using CodeDOM?
I am using CodeDOM to compile a *.cs file based on the data table retrieve form SQL server. So, the compiled code should be the entity class of the particular table. I managed to compile the class as ...
0
votes
1answer
34 views
How to remove @prefix from field type when generating code with CSharpCodeProvider
I create field member like this:
var fieldMember = new CodeMemberField("int", "Test");
Now because field type is "int" which is reserved C# keyword generated code looks like this:
@int Test;
...
2
votes
2answers
109 views
Is There an Official Replacement for CodeDom?
I am looking into the System.CodeDom namespace for language-independent (at least within certain bounds) source code generation, and I have found some information discouraging the use of CodeDom.
I ...
-1
votes
1answer
63 views
Resources in Winforms Application using CodeDOM
I have an application that deploys smaller applications.
Those smaller ones basically consist of an icon (not a form icon) and a notifyicon control that needs an icon as well.
My question is: How to ...
-2
votes
2answers
143 views
Prevent Codedom build from being decompiled
Was simply asking about encrypting builds.
Sorted now, thanks all<3
1
vote
0answers
54 views
How to get EnvDTE.CodeTypeRef from PropertyInfo.PropertyType (System.CodeDom.CodeTypeReference)
I am trying to get an EnvDTE.CodeTypeRef from a PropertyInfo.PropertyType.
I have tried the following
(EnvDTE.CodeTypeRef)(new ...
0
votes
1answer
72 views
Can I compile Multiple classes into one program with CodeDom?
Now this has been bugging me for ages and it's time to find out if it's possible. I currently have a working CodeDom that can compile one class, but I have created a program with multiple classes that ...
0
votes
0answers
49 views
CodeDom giving me resources could not be accessed error [closed]
hey guys i just finished coding a program in C# where i have codedom compile something for me and when i hit compile i get the following error:
error CS1566: Error reading resource file
and i have ...
0
votes
2answers
64 views
transporting byte array to codedom giving me an error
hey guys im working on a project where i have to generate an executable containing the byte array of another executable, basicly my program loads a executable and stores all of the corresponding bytes ...
0
votes
2answers
61 views
CodeDOM not found assemblies
I just asked a question about compiling with CodeDOM and i got a awesome answer which solved many problems the one problem i have now is how to add the following usings to my compiler
...
1
vote
1answer
148 views
CodeDOM Not compiling
I wanna build a builder for my application this is the source of the builder
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
...
0
votes
1answer
145 views
Dynamic Compilation, ReferencedAssemblies.Add another Project
will appreciate any pointers here.
I am creating a Solution that have multiple Projects.
The solution have various class libraries that I create (libCore, libApplication, libUser).
One project in ...
4
votes
1answer
117 views
Switch statement in codeDom (jump table style)
I know switch statements are not available in CodeDom and how compilers deal with switch statement.
So for performance reasons when many cases are present, I don't want to use If-else
Why the ...
0
votes
0answers
40 views
Making CodeSnippetStatements inside CodeConditionStatement use proper indentations?
If I want to use a snippet inside a CodeConditionStatement it has to be a CodeSnippetStatement which will not use proper indentations (relative to the statements following it). Is there any way to ...
2
votes
0answers
167 views
Adding and retrieving embedded resources codedom
Ok, I feel like the answer to my question is online, but I cannot find it. All I'm trying to do is add a text resource file to the program I'm compiling with CodeDom and then access that text file in ...
0
votes
0answers
38 views
Is there such a thing as a class template with CodeDOM?
Basically I want to generate classes using CodeDOM but I don't want to write every single element of a class as an abstract CodeDOM object (this has proven to be extremely time consuming and tedious). ...
1
vote
1answer
499 views
Shell32.dll Reference Causing Problems
I am making an application in C# with the .NET Framework of 3.5 with a feature that unzips a file; however, when I run it, as soon as it gets to the unzipping method it crashes with a Windows "stopped ...
0
votes
0answers
54 views
CodeDom to Serialize object to source code
I'm making a converter from SSRS to Telerik Reporting and then using reflection to write out the source code of the .Designer.cs file.
I'm reading the CodeDom attributes with Reflection to control ...
1
vote
0answers
225 views
How to get the results of C# WebService call that used a custom proxy for the WebService request?
I am trying to read/cast/parse into a string the results of a WebService call.
WebMethod method = list.Services[0].Methods[0] as WebMethod;
if(method != null)
{
...
0
votes
1answer
156 views
How do I add another project (assembly) from my solution to the set of CompilerParameters.ReferencedAssemblies?
Say I have a string of code as below that I compile in my main project. But I want to implement an interface in the CustomClass. The interface is located in another project in my solution (part of ...
1
vote
1answer
117 views
Building Program with unsafe code in Codedom
I'm trying to compile some unsafe code from an application using Codedom, but everytime I get an error saying I must use "/unsafe." I've googled the issue and added:
Parameters.CompilerOptions = ...
0
votes
0answers
53 views
Replacing INameCreationService with my own implementation in CodeDomDesignerLoader
I am writing a forms designer using .NET. I am using CodeDomDesignerLoader as the base for my own loader. There is a INameCreationService already implemented in the CodeDomDesignerLoader.
I would ...
1
vote
1answer
59 views
How to make CodeDom generated class implement a self-referencing generic interface
I am generating value objects and I want to switch my approach from templates to CodeDom approach.
I want my types to implement one or two self-referencing generic interfaces (namely ...
0
votes
2answers
200 views
CodeDom Compile The Type or Namespace Error
I have a program using WPF in C# that uses the .NET 4 Framework (Not Client Profile), and it compiles a source file called "Source.txt". However, whenever it compiles it I get this error "Error ...
2
votes
1answer
148 views
Implement Generic Interface via CodeDom
The CodeDom is not generating legal VB for me when I try to implement a generic interface.
Here is my VB code to generate the VB code.
Private Sub RunTest()
Dim compileUnit = New ...
3
votes
1answer
142 views
How to initialize object with CodeDOM?
I need to initialize my object like below:
var obj = new EduBranch {
Id = model.Id,
WorklevelId = model.WorklevelId,
EdulevelId = model.EdulevelId,
Title = model.Title,
...
0
votes
1answer
269 views
Interacting with assembly generated by CSharpCodeProvider
I made a toy compiler for learning/experimentation.
Here's the code for compiling some C# code:
using System;
using System.CodeDom.Compiler;
using System.Reflection;
using Microsoft.CSharp;
...
0
votes
0answers
148 views
How to create code namespaces from XSD namespace with XmlCodeExporter?
I have massive XSD structure with lots of imports and the worst thing is that lots of names are used more than once. But these duplicated names are in different namespaces so everything is fine from ...




