I have an IF condition,
IF (this.Something.GID == 1)
{
Something = "something";
}
I want to add one more option other than 1, I want to say
IF (this.Something.GID **is 1 or 2**)
{
Something = "something";
}
how do I go about doing that in C#?
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.
It’s better you start with some C# beginners book/tutorials.