vote up 4 vote down star
1

How to convert all elements from enum to string?

Assume I have:

public enum LogicOperands {
		None,
		Or,
		And,
		Custom
}

And what I want to archive is something like:

string LogicOperandsStr = LogicOperands.ToString();
// expected result:  "None,Or,And,Custom"
flag

48% accept rate

5 Answers

vote up 21 vote down check
string s = string.Join(",",Enum.GetNames(typeof(LogicOperands)));
link|flag
vote up 1 vote down

Although @Moose's answer is the best, I suggest you cache the value, since you might be using it frequently, but it's 100% unlikely to change during execution -- unless you're modifying and re-compiling the enum. :)

Like so:

public static class LogicOperandsHelper
{
  public static readonly string OperandList = 
    string.Join(",", Enum.GetNames(typeof(LogicOperands)));
}
link|flag
vote up 1 vote down
string LogicOperandsStr 
     = Enum.GetNames(typeof(LogicOoperands)).Aggregate((current, next)=> 
                                                       current + "," + next);
link|flag
vote up 8 vote down

You have to do something like this:

var sbItems = new StringBuilder()
foreach (var item in Enum.GetNames(typeof(LogicOperands)))
{
    if(sbItems.Length>0)
        sbItems.Append(',');
    sbItems.Append(item);
}

Or in Linq:

var list = Enum.GetNames(typeof(LogicOperands).Aggregate((x,y) => x + "," + y);
link|flag
I was thinking of the similar linq version, you beat me. +1 – Vivek Apr 10 at 15:15
Please don't abuse StringBuilder like that! – Randolpho Apr 10 at 15:25
1  
Randolpho what's wrong with the stringbuilder code ? What abuse ? – Petar Petrov Apr 10 at 15:42
1  
Indeed, it looks okay to me. Using String.Join is neater, but I don't see any "abuse" here. – Jon Skeet Apr 10 at 15:44
Unless you've got dozens of items in the enumeration, you're better off with a string concatenation. – Randolpho Apr 10 at 15:55
show 2 more comments
vote up 0 vote down
foreach (string value in Enum.GetNames(typeof(LogicOoperands))
{
    str = str + "," + value;
}
link|flag
You're missing the commas – Keltex Apr 10 at 15:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.