In C# how can I express the following if else statement using a shorter method(with ?):
if (condition1 == true && count > 6)
{
dothismethod(value);
}
else if (condition2 == false)
{
dothismethod(value);
}
My code looks really messy with these statements. Can someone direct me to a good resource on if then else short cut syntax?
