show/hide this revision's text 3 Spelling and grammer cleanup

Enum & Switch CaseeCase

hi i

Hi I am using enum strings for the enums converted to a string with a switch case but it doesn't works.it work. It gives compilation error(Cannot error: Cannot implicitly convert type 'userControl_commontop.UserType' to 'string').check the 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
}
show/hide this revision's text 2 tags & formatting

hi i am using enum strings for the switch case but it doesn't works.it gives compilation error(Cannot implicitly convert type 'userControl_commontop.UserType' to 'string').check the code

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
}
show/hide this revision's text 1

Enum & Switch Casee

hi i am using enum strings for the switch case but it doesn't works.it gives compilation error(Cannot implicitly convert type 'userControl_commontop.UserType' to 'string').check the code

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
}