Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

31
votes
2answers
374 views

FlagsAttribute Enum problems

So I'm building an MSNP (windows live messenger) client. And I've got this list of capabilities public enum UserCapabilities : long { None = 0, MobileOnline = 1 << 0, MSN8User = 1 ...
6
votes
6answers
3k views

Flags enum & bitwise operations vs. “string of bits”

A fellow developer suggested we store a selection of days of the week as 7-character string of 1’s and 0’s, i.e. “1000100” for Monday and Friday. I preferred (and strongly suggested) a solution with a ...
4
votes
2answers
285 views

C# extension method to check if an enumeration has a flag set

I want to make an extension method to check if an enumeration has a flag. DaysOfWeek workDays = DaysOfWeek.Monday | DaysOfWeek.Tuesday | DaysOfWeek.Wednesday; // instead of this: if ((workDays & ...
4
votes
4answers
574 views

Random value from Flags enum

Say I have a function that accepts an enum decorated with the Flags attribute. If the value of the enum is a combination of more than one of the enum elements how can I extract one of those elements ...
3
votes
4answers
300 views

How do I get all possible combinations of an enum ( Flags )

[Flags] public enum MyEnum { None = 0, Setting1 = (1 << 1), Setting2 = (1 << 2), Setting3 = (1 << 3), Setting4 = (1 << 4), } I need to be able to somehow ...
3
votes
4answers
640 views

flag enum confusion C#

According to my code a=1, b=2, c=3 etc. I thought the flag would make a=1, b=2, c=4, etc [Flags] public enum someEnum { none, a, b, c, d, e, f, } How do i get what i intended(c=4, e=8)? and what ...
2
votes
3answers
112 views

What are the disadvantages of using a flags enum for permissions?

In trying to implement role based security for a web app, I have a table in the database for Permissions, Roles, Users and UserRole (i.e the assignment of users to roles). Each role has a set of ...
2
votes
3answers
253 views

Converting string to flags enum in C#

A device reports status of its limit switches as a series of ones a zeros (meaning a string containing "010111110000"). Ideal representation of these switches would be a flags enum like this: [Flags] ...
1
vote
4answers
161 views

Should “or” work with .Net4 Hasflags: enum.HasFlag(AccessRights.Read | AccessRights.Write)

I am trying out the new HasFlags features, and was wondering if the following should work: enum.HasFlag(AccessRights.Read | AccessRights.Write) ... because it doesn't seem to... ...
1
vote
3answers
82 views

Why operators << and >> are not realized for flag enums in C#?

I want to do something like this, but I can't: [Flags] enum SomeEnum : int { None = 0, A, B, C } SomeEnum en = SomeEnum.A; en <<= 1; //Expect en == SomeEnum.B but I recieve an error here ...
1
vote
2answers
112 views

How to set all bits of enum flag

I wonder a generic way for setting all bits of enum flag to 1. I just would like to have an enum which returns for all comparisons, regardless of other enums. And this code works; [Flags] public ...
0
votes
4answers
60 views

Append Enum Flags to a Parameter in a Loop (Bitwise Appending)

In C#, I am trying to "add" values to a parameter that accepts enumerated flags. I can do it on one line with a bitwise operator "|", but I can't seem append to the parameter in a loop. I have the ...
0
votes
2answers
147 views

Access Control in ASP.NET MVC using [Flags] based Enum to int permissions management in SQL

This question is inspired by this SO question regarding Access Control in ASP.NET MVC. Here I'm trying to bring the accepted answer into a tangible solution. The answer mentions using ...
0
votes
3answers
97 views

Setting multiple enum flags in XAML

Is there any way to set multiple enum flags (that are traditionally separated by | in codebehind) in XAML? I tried something like: <ns:SomeControl Flags="FlagA|FlagB" /> but that didn't work. ...
0
votes
1answer
273 views

WSDL: How to create an enum with C# FlagsAttribute?

Basically, I created my WSDL and added a SimpleType with enum values: A, B, C. When I build my service with this wsdl I want the enum to be constructed with the FlagsAttribute, but how do I specify ...
0
votes
2answers
396 views

C# - Help with [Flags] Enum & Extension Method

I have the following enum: [Flags] public enum PostAssociations { None = 0x0, User = 0x1, Comments = 0x2, CommentsUser = 0x3 } As a starting note, im not sure if those flags are ...
0
votes
1answer
193 views

enum flags with name

I'm going to use enum flags for options to initialize my class. The enum is: namespace MCXJS { enum VARPARAM { STATIC = 1, CONST = 2 } //other things } If I'm ...
0
votes
3answers
361 views

How to deal with calculated values with Dependency Properties on a custom WPF control

To summarize what I'm doing, I have a custom control that looks like a checked listbox and that has two dependency properties one that provides a list of available options and the other that ...
0
votes
2answers
1k views

WPF DataBinding to Flag Enum (in a PropertyGrid)

I need to have the ability to select multiple values as is the nature of a Flag enumeration from a WPF view (all be it, in a PropertyGrid). The properties in question are dynamic and no pre-defined ...
0
votes
2answers
4k views

C#: Getting the correct keys pressed from KeyEventArgs' KeyData

I am trapping a KeyDown event and I need to be able to check whether the current keys pressed down are : Ctrl + Shift + M ? I know I need to use the e.KeyData from the KeyEventArgs, the Keys enum ...