OR Operator in c#

Posted by Saif Khan on Stack Overflow See other posts from Stack Overflow or by Saif Khan
Published on 2009-05-05T17:39:28Z Indexed on 2010/04/07 2:23 UTC
Read the original article Hit count: 459

Can I achieve

if(a == "b" || "c")

instead of

if(a == "b" || a== "c")

© Stack Overflow or respective owner

Related posts about c#

Related posts about operators