1
vote
0answers
17 views
Boost::Random and Enumerated Types
Right now I'm generating a random enumerator using boost's random library. Basically I'm using an implicit conversion to specify the random generator's distribution, getting a rand …
0
votes
1answer
21 views
PostgreSQL - Updating an Enum Type
I've got a field that is using an enumeration type. I wish to update the enum to have an additional field (I don't want to delete anything, just add a new label). What is the simpl …
0
votes
4answers
109 views
[C++] Enum declaration inside a scope that is a parameter of a macro.
Hi,
I am trying to create a macro that takes a scope as a parameter.
I know, it is probably not a good thing etc etc.
I was trying this and got the problem that preprocessor looks …
2
votes
1answer
39 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 …
1
vote
2answers
64 views
IEnumerable Extension Methods on an Enum
I have an enum(below) that I want to be able to use a LINQ extension method on.
enum Suit{
Hearts = 0,
Diamonds = 1,
Clubs = 2,
Spades = 3
}
Enum.GetValues(...) …
0
votes
1answer
77 views
Regular expression substitution for ENUM record
How do I susbtitute in matched groups from 1 regular expression into another regular expression in C#?
I need to process an ENUM DNS record where the first half of the record is a …
1
vote
3answers
98 views
Finding the Highest Value in an Enumeration
I'm writing a method which determines the highest value in a .NET enumeration so I can create a BitArray with one bit for each enum value:
pressedKeys = new BitArray(highestValueI …
2
votes
2answers
83 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( …
1
vote
3answers
162 views
Pass enums by value or reference?
My general rule is to pass by value for primitive types and pass by reference for objects (obviously const'd if need be). However, I'm not sure what route to take with enumerated t …
1
vote
4answers
89 views
Enum scoping issues
I try to keep things as local as possible, so I put enums at class scope, even if they are shared between two classes (I put it in the class that "goes better" with it.) This has w …
1
vote
2answers
67 views
Bound value for IValueConverter resets to default
I have bound a flagged enum to a bunch of checkboxes by using a value converter that works as described in the solution to this question. This works fine when I'm working with a fl …
0
votes
1answer
27 views
error in webrat
duplicate of http://stackoverflow.com/questions/1659586/error-in-webrat-installation
hai all,
i am getting an error when i am iinstalling webrat for my rails app.i want …
2
votes
4answers
113 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 acc …
0
votes
1answer
36 views
How to set enum Type indexer in Spring.NET configuration xml?
I have this code:
public enum StateId { NotSet = 0, AL, ..., WY }
public class EnumBasedArray<I,V>:IEnumerable<V>
{
public V this[I index]
{
get { return _d …
2
votes
3answers
116 views
C# enum that depends upon another enum [or maybe this is more design related]
I might be going in the wrong direction, so let me try to sort out my thoughts (and hopefully get some tips from you guys):
Imagine an enum:
public enum ReportType
{
Performan …
