0
votes
2answers
61 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
37 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 …
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 …
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 …
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 …
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 …
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 …
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 …
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 …
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 …
3
votes
4answers
116 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
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 …
0
votes
0answers
7 views
Master data validation & enumerations
At a high level my question is like the following -
I am doing a data sync, using web services, between two different systems. To validate the mater data, I depended on creating enums and tried to …
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
1answer
22 views
maximum enum usage in schema
i need to populate a table column which takes one of 30 different string values. Is it advisable to use enum here for speed up processing . Can anyone suggest better solution which is reasonably …
