it is possible split it:
int n = 1 | 2;
to
int a = n ?? // returns 1
int b = n ?? // returns 2
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Well, you can use:
That’s fine if 1 and 2 are the only values which are going to be OR-ed together… but it’s not really clear whether that’s the case. You haven’t shown what other values
nmight have.