0
votes
1answer
37 views
can C# enums be declared as of bool type?
Hi,
Can I declare c# enum as bool.. like,
enum Result : bool
{
pass = true,
fail = false}
0
votes
2answers
36 views
Find Enum Value by Passed Parameter
Hi,
I have an enum like this :
public enum Priority
{
Low = 0,
Medium = 1,
Urgent = 2
}
And I want to get the for example Priority.Low by passing like Enum.GetEnumVar(Priority,0) which …
4
votes
5answers
118 views
Why can’t I switch on a class with a single implicit conversion to an enum
I am wondering why it is that a single implicit conversion to an enum value doesn't work the same way it would if the conversion were to a system type. I can't see any technical reason however maybe …
0
votes
0answers
54 views
WCF - Common library enum issue - C#
I've got a common library that contains enums that are shared between a WCF Service and a client by means of the DLL. Yes, I know the better way of doing this is to create a service out of my common …
1
vote
3answers
80 views
Workarounds for the forward-declared class enumeration problem?
I am maintaining a large code base and am using a combination of forward declarations and the pImpl idiom to keep compile times down and reduce dependencies (and it works really well,)
The problem I …
1
vote
5answers
83 views
c#:How to use enum for storing string constants? [closed]
Possible Duplicate:
Enum with strings
is is possible to have string constants in enum like
enum{name1="hmmm" name2="bdidwe"}
if it is not so what is best way to do so?
I tried it …
2
votes
1answer
27 views
Flags enumeration with multiple zero values problem (TextFormatFlags)
While trying to write a custom control I've come across a problem with the System.Windows.Forms.TextFormatFlags enum in combination with the Visual Studio (2005/2008) editor. The reason for this …
6
votes
8answers
259 views
C/C++: any way to get reflective enums?
I've encountered this situation so many times...
enum Fruit {
Apple,
Banana,
Pear,
Tomato
};
Now I have Fruit f; // banana and I want to go from f to the string "Banana"; or I have string …
3
votes
4answers
115 views
Java enum and additional class files
I've noticed enums introduce many additional class files (Class$1) after compilation bloating the total size. It seems to be attached to every class that even uses an enum, and these are often …
0
votes
3answers
189 views
Fake enum in C#
I'm trying to use the code from this article: Creating Fake Enums, but I can't figure out why it doesn't work.
This code:
Console.WriteLine(FakeEnum.One.FriendlyName);
…
0
votes
2answers
77 views
Encapsulating a private enum
Previously I've defined enumerated types that are intended to be private in the header file of the class.
private:
enum foo { a, b, c };
However, I don't want the details of the enum exposed …
0
votes
2answers
32 views
Get Enum from String in ActionScript3
Is there any way in ActionScript3 to get enum from string value?
e.g. I have enum
public final class Day
{
public static const MONDAY:Day = new Day();
public static const TUESDAY:Day = new …
0
votes
2answers
28 views
Some thought about a PHP Enum setup
Hi all,
For a project I'm working I need to have some sort of enumaration class since the data won't be changed It's useless to store it in a database and exhaust the db-server with unnecessary …
2
votes
4answers
205 views
Extending enums in C++?
Is there a way in C++ to extend/"inherit" enums?
I.E:
enum Enum {A,B,C};
enum EnumEx : public Enum {D,E,F};
or at least define a conversion between them?
0
votes
2answers
60 views
Design level problem: multiple enums or looping the enum in UI code in order to make visibility decision ?
Hi!, we have a debate about a BEST PRACTISE from a .NET architecture DESIGN POINT OF VIEW:
Task: How to manage role based visibility in UI with enum?
For example: I want to show all team types …
