show/hide this revision's text 3 fixed bracket typos

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(typeof(UserType), usertype(UserType)Enum.Parse(usertype, typeof(UserType))) {
  ...
}
show/hide this revision's text 2 transposed params

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)UserType)Enum.Parse(typeof(UserType), usertype) {
  ...
}
show/hide this revision's text 1

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)) {
  ...
}