one-liner if statements...
        Posted  
        
            by 
                snickered
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by snickered
        
        
        
        Published on 2011-01-07T04:49:27Z
        Indexed on 
            2011/01/07
            4:53 UTC
        
        
        Read the original article
        Hit count: 193
        
c#
|if-else-statement
Total noob here so be gentle. I've looked everywhere and can't seem to find the answer to this. How do I condense the following?
        if (expression)
        {
            return true;
        }
        else
        {
            return false;
        }
I can't get it to work since it's returning something vs. setting something. I've already seen things like this:
somevar = (expression) ? value1 : value2;
Like I said, please be gentle :)
© Stack Overflow or respective owner