6
votes
8answers
258 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 …
6
votes
2answers
121 views
Is the use of previously defined members as part of later members in an enum definition legal?
namespace ValueType {
enum Enum {
Boolean = 0,
Float = 1,
Double,
SInt = 8,
SLong,
UInt = SInt + (1 <<4),
ULong = SLong + (1 << 4)
};
}
5
votes
3answers
122 views
C# Enums with Flags Attribute
I was wondering if Enums with Flag attribute are mostly used for Bitwise operations why not the compilers autogenerate the values if the enum values as not defined.
For eg.
[Flags]
public enum …
5
votes
2answers
104 views
Best way to store enum values in database - String or Int
Hello there,
I have a number of enums in my application
which are used as property type in some classes.
What is the best way to store these values in database, as String or Int?
FYI, I will also …
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 …
4
votes
11answers
226 views
Possible to have strings for enums?
I want to have an enum as in:
enum FilterType
{
Rigid = "Rigid",
SoftGlow = "Soft / Glow",
Ghost = "Ghost",
}
How to achieve this? Is there a better way to do this? It's gonna be used for …
4
votes
5answers
172 views
Is it acceptable to design a method with a parameter of type System.Enum?
Consider the following method,
public void Add(Enum key, object value);
Since Enum is a "special class", I didn't realize you could use the type in this way, but it compiles. Now, the .NET …
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 …
3
votes
6answers
180 views
.NET enum size?
How many entries can an enum in .NET have?
3
votes
5answers
140 views
Multiple output operators?
Hi,
is it possible to define multiple output operators for an enum? I want to use this
std::ostream& operator<< (std::ostream& os, my_enum e);
operator to (1) print a human readable …
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 …
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?
2
votes
2answers
110 views
Passing an enum value as a stored procedure (data function) parameter in LINQ to SQL
As mentioned in this question, "LINQ to SQL allows table mappings to automatically convert back and forth to Enums by specifying the type for the column - this works for strings or integers." …
2
votes
2answers
88 views
Conversion of Enum to Enumerable
To convert Enum to Enumerable ,I use
public enum Flags
{
Trivial=1,
Minor,
Major,
Critical
}
IEnumerable<int> n =
Enumerable.Range((int)Flags.Trivial, …
2
votes
4answers
126 views
Bitflag enums in C++
Using enums for storing bitflags in C++ is a bit troublesome, since once the enum values are ORed they loose their enum-type, which causes errors without explicit casting.
The accepted answer for …
