Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Confused by ASP.NET c# and the "==" statement!

  • 11-07-2007 8:52am
    #1
    Moderators, Society & Culture Moderators Posts: 2,688 Mod ✭✭✭✭


    What will user status be set to in the OR part of this statement, i.e. what does the == mean?
    userStatusCorrect = false;
    if(secondUser == true)
    {
    userStatusCorrect = userStatusCorrect || (statusApp [COLOR="Blue"][B]==[/B][/COLOR] status);
    }
    


Comments

  • Registered Users, Registered Users 2 Posts: 14,149 ✭✭✭✭Lemming


    Morph&#233 wrote: »
    i.e. what does the == mean?

    The parenthesis in the example
    (statusApp == status)
    

    will evaluate with either a true or false result, dependant on what the values of both variables are going into the conditional statement, i.e. is the value of statusApp equal to the value of status, yes or no?


  • Moderators, Society & Culture Moderators Posts: 2,688 Mod ✭✭✭✭Morpheus


    I hate fixing other peoples code and I hate shortcuts, thanks for the reply.


  • Registered Users, Registered Users 2 Posts: 2,152 ✭✭✭dazberry


    Morph&#233 wrote: »
    I hate fixing other peoples code and I hate shortcuts
    userStatusCorrect = secondUser && (statusApp == status);
    

    D.


Advertisement