473,782 Members | 2,664 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Can enum be added to dynamically

apm
Can an enum start empty and be added to on the fly?
Nov 17 '05
15 16665
Daniel O'Connell [C# MVP] <onyxkirx@--NOSPAM--comcast.net> wrote:
Becasue enums nicely do 90% of what I want, and it would be nicer to reuse
and extend that functionality rather than have to duplicate it. You know,
what OOP is supposed to be good at :-)


Enums, atleast the .NET version, are pretty bad OOP IMHO. No inheritance, no
polymorphism, just flat value with a type.


Indeed - bring on the Java enumerations! (They have a few wrinkles, but
generally they're incredibly handy.)

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Nov 17 '05 #11

"Jon Skeet [C# MVP]" <sk***@pobox.co m> wrote in message
news:MP******** *************** *@msnews.micros oft.com...
Daniel O'Connell [C# MVP] <onyxkirx@--NOSPAM--comcast.net> wrote:
> Becasue enums nicely do 90% of what I want, and it would be nicer to
> reuse
> and extend that functionality rather than have to duplicate it. You
> know,
> what OOP is supposed to be good at :-)


Enums, atleast the .NET version, are pretty bad OOP IMHO. No inheritance,
no
polymorphism, just flat value with a type.


Indeed - bring on the Java enumerations! (They have a few wrinkles, but
generally they're incredibly handy.)


I have to agree, I'm starting to like some of the advantages more and more.
Although I don't think traditional inheritance is going to happen within the
..NET framework(chang ing enums from value types to reference types is a huge
change), allowing method definitions, including a basic set of operations
like IsSet(), Set(), and Unset() for [Flags] enums, would certainly help
alot. Some form of enum composition might not be a bad idea either.
Nov 17 '05 #12
apm

"Daniel O'Connell [C# MVP]" <onyxkirx@--NOSPAM--comcast.net> wrote in
message news:%2******** ********@TK2MSF TNGP15.phx.gbl. ..

"apm" <Co*********@Ad sorptionProcess Modeling.com> wrote in message
news:dGE2f.1222 0$U%5.8789@lake read05...

"Daniel O'Connell > What are you trying to do? Chances are there is
another pattern to pull it
off since enums that are modified at runtime really don't make a whole
lot of sense.


I'm want to give the user a set of choices that will present themselves
as an enumeration in intellisence. It would be easier to write the code
if the values of the enum could be read from a file. I suppose a macro
can be written to help write the code.


Intellisense is a compile time thing, built entirely on static code
knowledge. It doesn't make sense to change things at runtime and expect
them to change at compile time as well. Are you trying to generate code
files?

I think that is the only option with .NET. COM seems so much more
powerful than .NET.
Nov 17 '05 #13

"apm" <Co*********@Ad sorptionProcess Modeling.com> wrote in message
news:lUP2f.1260 7$U%5.2339@lake read05...

"Daniel O'Connell [C# MVP]" <onyxkirx@--NOSPAM--comcast.net> wrote in
message news:%2******** ********@TK2MSF TNGP15.phx.gbl. ..

"apm" <Co*********@Ad sorptionProcess Modeling.com> wrote in message
news:dGE2f.1222 0$U%5.8789@lake read05...

"Daniel O'Connell > What are you trying to do? Chances are there is
another pattern to pull it
off since enums that are modified at runtime really don't make a whole
lot of sense.
I'm want to give the user a set of choices that will present themselves
as an enumeration in intellisence. It would be easier to write the code
if the values of the enum could be read from a file. I suppose a macro
can be written to help write the code.


Intellisense is a compile time thing, built entirely on static code
knowledge. It doesn't make sense to change things at runtime and expect
them to change at compile time as well. Are you trying to generate code
files?

I think that is the only option with .NET. COM seems so much more
powerful than .NET.


Come again? I don't really know what you are trying to achieve, let alone
waht you mean here.
Nov 17 '05 #14

"Jon Skeet [C# MVP]" <sk***@pobox.co m> wrote in message
news:MP******** *************** *@msnews.micros oft.com...
Daniel O'Connell [C# MVP] <onyxkirx@--NOSPAM--comcast.net> wrote:
> Becasue enums nicely do 90% of what I want, and it would be nicer to
> reuse
> and extend that functionality rather than have to duplicate it. You
> know,
> what OOP is supposed to be good at :-)


Enums, atleast the .NET version, are pretty bad OOP IMHO. No inheritance,
no
polymorphism, just flat value with a type.


Indeed - bring on the Java enumerations! (They have a few wrinkles, but
generally they're incredibly handy.)


Can't add to those dynamically either (At least in any supported way. I
haven't tried to hack into the $VALUES array.)
Nov 17 '05 #15
Mike Schilling <ms************ *@hotmail.com> wrote:
Indeed - bring on the Java enumerations! (They have a few wrinkles, but
generally they're incredibly handy.)


Can't add to those dynamically either (At least in any supported way. I
haven't tried to hack into the $VALUES array.)


No, you can't add to them - but they stil have fabulous advantages
compared with .NET enums.

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Nov 17 '05 #16

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

Similar topics

2
14692
by: Dev | last post by:
Dear Friends, Is it possible to add the Enum in dynamically. Like Ex: enum Colors { Green, Red,Yellow,Blue,Orange } So i want add 6th name Black to Colors.Is it possible? If so how?...If anyone knows please let me know.... Thanks,
3
1951
by: Jigar Mehta | last post by:
Hye, This is Jigar mehta from India. I have made one application that adds dynamic menu items from the database. Each menu item has one ID and menu item's text is coming from the database. Now, I want to get the notification of the menu item click which is added dynamically. I want to put one common routine where I can distinguish between all menu item clicks. Menu Items can be two or hundred. So, how to make one handler that will be...
1
2742
by: Ryu | last post by:
I am having a problem whereby the controls (along with its values) disappear after I click a button. The controls that I have added is a textbox in a Table. Both of these displayed correctly. Any suggestions will be helpful. Thanks
1
2065
by: Jeffrey Todd | last post by:
I have successfully created functionality that mostly models what I'm trying to do - which is dynamically insert controls into a user control (ascx), and insert validation controls, also dynamically, for some of the inserted controls. The controls (e.g., textBoxes) get created correctly and viewstate is maintained across postbacks, etc - BUT there is an issue with the validation controls. The validation controls, themselves are...
1
1607
by: Sudhakara.T.P. | last post by:
Hi, I want to populate my Enum dynamically from the database. Is that possible? If so, what is the approach that I need to take. I need this because I have some set of constants in my table which I want to fetch once the moment i start my application and store that in Enum. Regards Sudhakara.T.P.
5
3736
by: Dennis Fazekas | last post by:
Greetings, I am creating a web form which will all the user to add an unlimited number of email addresses. Basically I have 3 buttons, "Add Another Email", "-" to remove, and a "Save" button. When the user clicks the "Add another email" it will call a client side JavaScript function, add_email, which will dynamically add a new set of controls to the webpage using the innerHTML method. It appears to work perfectly fine in the browser. The...
2
2375
by: James Black | last post by:
I am dynamically generating a table in IE to display some information. I will probably change it to divs later, but I just want to get it working properly first. In my div I have the following as the value of innerHTML: "<TABLE> <TR> <TD id=td6x vAlign=top align=right><IMG height=14 alt=Required src=\"/images/ci/icons/required.gif\" width=7 border=0 vAlign=\"top\"><INPUT id=anchor6x width=0 size=10
6
1497
by: Bjorn Sagbakken | last post by:
Hello In VS2005: I am adding buttons and textboxes dynamically into a table, that also dynamically expands. So far, so good, actually very nice. But I am having trouble starting the desired subroutine on postback. To me it seems like the button click event looks for a client script instead of going to the aspx codepage and execute the sub there. The same thing happens with textboxes, where I programatically add
1
1181
by: nse111 | last post by:
Is it possible to have a Session variable as an array in PHP where, that array gets values added to it dynamically? Im trying to create a inquiry cart where the product ids of all the items that a customer inquires about gets stored in a session variable. how can I do this? the ids can be sepperated by a delimeter dynamically. I just cant get this done. pls help if you know. thans in advance!
6
2471
by: amek000 | last post by:
<script language="javascript"> function calcvaluesArr(){ var txts = document.getElementsByName('textfield23'); var aTotal=0; for (var i = 0; i < txts.length; i++) { if (txts.value!="") { aTotal=eval(aTotal)+eval(txts.value); }
0
10308
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10076
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9939
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7486
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6729
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5507
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4040
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3633
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2870
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.