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

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

Options
  • 11-07-2007 9: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 Posts: 14,148 ✭✭✭✭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 Posts: 2,150 ✭✭✭dazberry


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

    D.


Advertisement