vote up 2 vote down star

Hi I am using enums converted to a string with a switch but it doesn't work. It gives compilation error: Cannot implicitly convert type 'userControl_commontop.UserType' to 'string'

The code is:

private void CommonTopChangesnew(string usertype)
{

    switch (usertype.Trim().ToUpper())
    {
        case UserType.NORMAL :
            hlkSAD.Enabled = false;
            hlkMRTQuery.Enabled = false;
            hlkReqViewer.Enabled = false;
            hlkSendnotif.Enabled = false;
            break;
        case UserType.POWER :
            hlkSAD.Enabled = false;
            hlkReqViewer.Enabled = false;
            hlkSendnotif.Enabled = false;
            break;
    }
}

enum UserType
{
    NORMAL,
    POWER,
    ADMINISTRATOR
}
flag

23% accept rate
Please reformat your code fragment; it's currently unreadable... – Shaul May 8 at 7:36

6 Answers

vote up 2 vote down check

You could convert the userType parameter in to an enum value using this funtion:

object Enum.Parse(System.Type enumType, string value, bool ignoreCase);

as

UserType utEnum = Enum.Parse(UserType , userType, true);

and then you can call your switch statement as:

switch (utEnum) { ... }

link|flag
vote up 5 vote down

The enumeration is not a string, any more than a constant const int MY_VALUE = 1; is a string.

If you want to convert the enum values into a string, do:

case UserType.NORMAL.ToString():

etc.

Alternatively, you could change your string into an Enum:

switch ((UserType)Enum.Parse(usertype, typeof(UserType))) {
  ...
}
link|flag
The first option probably won't work as switch requires case statements to be constant. – Josh Einstein Jun 2 at 10:11
vote up 3 vote down

You should try this:

enum UserType
{
  NORMAL,
  POWER,
  ADMINISTRATOR
}

private void CommonTopChangesnew(string usertype)
{
  switch ((UserType)Enum.Parse(typeof(UserType), usertype, true))
  {
    case UserType.NORMAL:
      hlkSAD.Enabled = false;
      hlkMRTQuery.Enabled = false;
      hlkReqViewer.Enabled = false;
      hlkSendnotif.Enabled = false;
      break;
    case UserType.POWER:
      hlkSAD.Enabled = false;
      hlkReqViewer.Enabled = false;
      hlkSendnotif.Enabled = false;
      break;
  }
}
link|flag
vote up 1 vote down

Your function accepts a parameter of type string and then you use the same parameter to compare types belonging the Enum. Here lies the conflict.

Your function should instead be :

private void CommonTopChangesnew(UserType usertype)
{

  switch (usertype)
  {
    case UserType.NORMAL :
      hlkSAD.Enabled = false;
      hlkMRTQuery.Enabled = false;
      hlkReqViewer.Enabled = false;
      hlkSendnotif.Enabled = false;
      break;
    case UserType.POWER :
      hlkSAD.Enabled = false;
      hlkReqViewer.Enabled = false;
      hlkSendnotif.Enabled = false;
      break;
  }
}
link|flag
vote up 0 vote down

You can't compare a String with an Enum.

You should pass an Enum to your method.

link|flag
vote up 0 vote down

Option 1: Change your CommonTopChangesnew to accept a UserType enum as a parameter

or

Option 2: Use Enum.Parse to convert your string to a UserType enum in your switch block:

(UserType)Enum.Parse(typeof(UserType), usertype)

link|flag

Your Answer

Get an OpenID
or

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