I have the following statement in C#
if(user.member.RegistrationDate.Value.Month == 10 || user.member.RegistrationDate.Value.Month == 11)
My question is, is there a way to write this in shorthand eg;
if(user.member.RegistrationDate.Value.Month == 10 || 11)