14
votes
17answers
4k views
Forward declaring an enum in c++
Hi guys,
I'm trying to do something like the following:
enum E;
void Foo(E e);
enum E {A, B, C};
which the compiler rejects. I've had a quick look on Google and the consensus seems to be "you …
1
vote
3answers
105 views
Casting Enum to uint
I'm writing a function that takes an Enum and casts it to uint. From what I've seen when casting to int, you have to cast it to an object first: (int) (object) myEnumValue. If you write (int) …
4
votes
3answers
741 views
WPF: how to display enum property values in vs2008 xaml editor intellisense?
i created a wpf custom control with a dependency property of an enum type.
i want the user of that control when editing the xaml in vs to see the optional values of the enum in the intellisense …
2
votes
4answers
108 views
Retrieve value of Enum based on index - c#
This is my enum:
public enum DocumentTypes
{
[EnumMember]
TYPE_1 = 1,
[EnumMember]
TYPE_2 = 2,
[EnumMember]
TYPE_3 = 3,
[EnumMember]
…
4
votes
11answers
519 views
.NET: Why aren’t Enum’s Range/Value Checked?
This has always bugged me. Perhaps someone with some hardcore knowledge of .NET internals can explain it to me.
Suppose I define an enum as follows:
public enum Foo
{
Eenie = 1,
Meenie = 2,
…
2
votes
4answers
1k views
Generate random enum in C# 2.0.
Could someone please point me toward a cleaner method to generate a random enum member. This works but seems ugly.
Thanks!
public T RandomEnum<T>()
{
string[] items = Enum.GetNames(typeof( T …
5
votes
5answers
3k views
How to persist an enum using NHibernate
Hi,
Is there a way to persist an enum to the DB using NHibernate? That is have a table of both the code and the name of each value in the enum.
I want to keep the enum without an entity, but still …
0
votes
3answers
40 views
Adding an enum as a class property in HBM.
I am trying to create a class in HBM file which contains an Enum as a field.
The HBM is similar to this:
<class name="a.b.c.myObject" table="OBJECT" >
<property name="myEnum" …
0
votes
8answers
198 views
What’s the best way to return multiple enum values? (java and C#)
more of original content deleted to make question easier to reference:
So I have a House class that has a method House.buy(Person p), causing the person to buy the house. I want to know if its …
0
votes
2answers
73 views
Internal enum as a base class template parameter [C++]
Hi, in code like this:
#pragma once
#include "stdafx.h"
#include "Token.h"
//I would like this enum to be inside class Number
enum Number_enm {ZERO, ONE, TWO, THREE, FOUR, FIVE, SIX, SEVEN, EIGHT, …
2
votes
3answers
164 views
Mapping enum values to strings in C++
Is there a way to, at runtime, map the value of an enum to the name? (I'm building with GCC.)
I know GDB can do it and I'm willing to use something that's unportable and mucks with debug data.
…
0
votes
0answers
14 views
Make enum bindable to datagridview
Hi all
I have an object which contains a number of string properties and an enum property called CRAction.
I have another object which represents a collection of the above object.
When I bind the …
0
votes
2answers
48 views
C++/CLI : Casting from unmanaged enum to managed enum
What is the correct way of casting (in C++/CLI) from a native code enum to a managed code enum which contain the same enum values? Is there any difference with using the C# way of casting like for …
0
votes
6answers
114 views
c++ multiple enums in one function argument using bitwise or “|”
Hi,
I recently came across some functions where you can pass multiple enums like this:
myFunction(One | Two);
Since I think this is a really elegant way I tried to implement something like that …
0
votes
2answers
29 views
MySQL Enum’s always contain ‘’ (empty string) in possibilities
Hi,
I'm trying to create a simple 'yes'/'maybe'/'no' Enum in MySQL with PhpMyAdmin
I set NULL to No, and 'maybe' as the default value
I am expecting an error when executing something like "SET …
