I get the following compilation error with the following source code:

Compilation Error:

Type of conditional expression cannot be determined because there is no implicit conversion between '' and 'MyEnum'

Source Code

public enum MyEnum
{
    Value1, Value2, Value3
}

public class MyClass
{
    public MyClass() {}
    public MyEnum? MyClassEnum { get; set; }
}

public class Main()
{
   object x = new object();

   MyClass mc = new MyClass()
   {
        MyClassEnum = Convert.IsDBNull(x) : null ? 
            (MyEnum) Enum.Parse(typeof(MyEnum), x.ToString(), true)
   };
}

How can I resolve this error?

link|improve this question

75% accept rate
feedback

3 Answers

up vote 13 down vote accepted

I think you just need to cast the result of Enum.Parse to "(MyEnum?)". This is the case with nullable ints at least. E.g.

int? i;
i = (shouldBeNull) ? null : (int?) 123;

So:

MyClassEnum = Convert.IsDBNull(x) : null ? 
    (MyEnum?) Enum.Parse(typeof(MyEnum), x.ToString(), true)
link|improve this answer
2  
MyClassEnum must also be nullable (obviously). – Robert C. Barth Jan 8 '09 at 23:48
Thanks....That solved my issue. – Michael Kniskern Jan 9 '09 at 0:35
feedback

There is a syntax error in your code: the position of ':' and '?' must be exchanged:

MyClassEnum = Convert.IsDBNull(x) ? null : 
            (MyEnum) Enum.Parse(typeof(MyEnum), x.ToString(), true)

BTW:

as far as I know, the recommended way is to use a enum-element named 'None' instead of a Nullable enum, e.g:

public enum MyEnum
{
    None, Value1, Value2, Value3
}

and

MyClassEnum = Convert.IsDBNull(x) ? MyEnum.None : 
            (MyEnum) Enum.Parse(typeof(MyEnum), x.ToString(), true);
link|improve this answer
feedback

I think you will just need to cast the result to (MyEnum?) rather than (MyEnum)?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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