473,395 Members | 1,624 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

CodeDom and Enums

I am trying to generate:

ShortCut.None

ShortCut is an enumeration and None the value I want. I can't seem to
find anything that will allow me to use enums in the codedom. Anyone
have a suggestion?

Nov 16 '05 #1
2 5118
<Th********@gmail.com> wrote in message news:11**********************@z14g2000cwz.googlegr oups.com...
ShortCut is an enumeration and None the value I want. I can't seem to
find anything that will allow me to use enums in the codedom. Anyone
have a suggestion?


If you're creating the type declaration, for instance,

public enum ShortCut
{
None = 0,
// ...
}

You'd conjure up a CodeTypeDeclaration like this in the CodeDOM,

CodeTypeDeclaration tdeclShortCut = new CodeTypeDeclaration( "ShortCut");
tdeclShortCut.IsEnum = true;
tdeclShortCut.Attributes = MemberAttributes.Public;

and then add CodeMemberFields to its CodeTypeMembersCollection with initialization
expressions to set them to explicit values.

OTOH, if you're assigning an instance of this ShortCut type to a variable reference, x,
for instance, then you'd use a CodeAssignStatement like this,

CodeAssignStatement stmt1 = new CodeAssignStatement(
new CodeVariableReferenceExpression( "x"),
new CodeFieldReferenceExpression(
new CodeTypeReferenceExpression( "ShortCut"), // use fully qualified type name if you've created it inside of a
namespace.
"None"
)
);
Derek Harmon
Nov 16 '05 #2
Thank you, that is what I needed.

Nov 16 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Ron Bullman | last post by:
Hi, I havent been able to find any documentation about @ in the CodeDom context. The problem is when generating C# code from CodeDom it will associate a @-tag with all C# specific types. Why?...
2
by: Guillaume | last post by:
I don't think I'm the only one with this challenge so… I made code with the CodeDom classes and made code to create a new solution and a new project Now I want to get the codedom code in the new...
5
by: Mark | last post by:
I'm using the CodeDom namespace to generate code. How do you specify that the method of a class should be static? I'm assuming I use the CodeMemberMethod class to define the method, but I'm not...
0
by: ThisBytes5 | last post by:
I am trying to generate: ShortCut.None ShortCut is an enumeration and None the value I want. I can't seem to find anything that will allow me to use enums in the codedom. Anyone have a...
1
by: John Livermore | last post by:
Hello, We have an application that uses CodeDom for dynamic in-memory compilation of code. The same code (library) is used by both an ASP.net web site and a Windows Service. The code runs fine...
9
by: lee.chappers | last post by:
How can I make the CodeDom generate the following C# method? protected sealed override void Test() { } I've tried using: domMethod.Attributes = MemberAttributes.Override |...
6
by: moondaddy | last post by:
will CodeDom create XAML windows or just regular windows forms? If so, how to I tell it to create a xaml window instead of a windows form? thanks -- moondaddy@noemail.noemail
2
by: CodeMonkey775 | last post by:
I'm having problems passing a variable to a method which is executed and compiled using CodeDom. The situation is I have a List<CellData> with cells, each containing a formula (like Excel). I am...
1
by: =?Utf-8?B?QU1lcmNlcg==?= | last post by:
I may have painted myself into a corner with GenerateInMemory=true. My app need a custom user step. Users want to code (sort of - they are not programmers) some refinements to a search...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.