14
votes
10answers
2k views
Enum Flags Attribute
Anyone have a good explanation or example they could post?
Edit: I changed the answer, this one is more in depth.
10
votes
9answers
1k views
Anyone know a good workaround for the lack of an enum generic constraint?
What I want to do is something like this: I have enums with combined flagged values.
public static class EnumExtension
{
public static bool IsSet<T>( this T input, T matchTo )
…
9
votes
8answers
498 views
Flags in a database rows, best practices.
I am asking this out of a curiosity. Basically my question is when you have a database which needs a row entry to have things which act like flags, what is the best practice? A good example of this …
9
votes
9answers
2k views
How to Compare Flags in C#?
I have a flag enum below.
[Flags]
public enum FlagTest
{
None = 0x0,
Flag1 = 0x1,
Flag2 = 0x2,
Flag3 = 0x4
}
I cannot make the if statement evaluate to true.
FlagTest testItem = …
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
10answers
389 views
Why use flags+bitmasks rather than a series of booleans?
Given a case where I have an object that may be in one or more true/false states, I've always been a little fuzzy on why programmers frequently use flags+bitmasks instead of just using several boolean …
4
votes
4answers
488 views
Switch on Enum (with Flags attribute) without declaring every possible combination ?
Hello,
how do i switch on an enum which have the flags attribute set (or more precisly is used for bit operations) ?
I want to be able to hit all cases in a switch that matches the values declared.
…
3
votes
3answers
172 views
How to Compare Flags in C#? (part 2)
Bit flags are a little difficult to understand :)
I know about this and this questions and I do understand the answers and I even followed this article from a good friend of mine.
But I still cant …
3
votes
6answers
401 views
Flags in Python
I'm working with a large matrix (250x250x30 = 1,875,000 cells), and I'd like a way to set an arbitrary number of flags for each cell in this matrix, in some manner that's easy to use and reasonably …
3
votes
2answers
362 views
Performing a binary OR in COBOL with Pic X data
I have a number of flags defined (by a header file far outside my control) that look something like this:
*
* OPTVAL field for IPV6_ADDR_PREFERENCES_FLAGS
*
01 IPV6-ADDR-PREFERENCES-FLAGS …
3
votes
13answers
342 views
Is using flags very often in code advisable?
I came across lot of flags while reading someone else code,
if (condition1)
var1 = true
else
var1 = false
then later,
if (var1 == true)
// do something.
There are lot of flags like …
3
votes
4answers
218 views
About assembly conditional code register
suppose we use the addl
instruction to perform the equivalent
of the C expression "t=a+b",where
a,b,t are variables of type
int,then the conditional code will be set according to the …
3
votes
6answers
396 views
Flags with web services
I have a flag attribute enumeration that is behind a web service as follows:
[Serializable,Flags]
public enum AccessLevels
{
None = 0,
Read = 1,
Write = 2,
Full = Read | Write
}
My …
3
votes
7answers
772 views
object editing and isDirty() flag
Hi all,
I'm working on a system were a user can edit existing objects ("Filter" domain objects to be exact) through a GUI. As a UI hint, we only want to enable the save button if the user really …
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 …
