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