Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this "if" statement, but I'm really messed up today and can't think of how to reverse it to be better...

if (plist.Exists("No Update Ramdisk") && plist.Get<PlistBool>("No Update Ramdisk").Value)
{
}
else
{
    ...
}

Just so you don't ask what plist is, I wrote a plist parser in .NET and I am scanning it for values

share|improve this question
What is plist.Get<PlistBool>("No Update Ramdisk").Value ? Is it boolean? – Dima Apr 28 '12 at 19:30
1  
And what do you mean by "reverse it to be better"? It looks short now. – Dima Apr 28 '12 at 19:31
in what way do you want it 'better'? – Peladao Apr 28 '12 at 19:31
yes PlistBool.Value represents a boolean in a plist – Cole Johnson Apr 28 '12 at 19:32
1  
reverse it so I dont have to do if(...){}else{...}, but if(...){...} – Cole Johnson Apr 28 '12 at 19:33

2 Answers

up vote 5 down vote accepted

You have at least three possibilities

  • Swap THEN and ELSE Block
  • Invert condition if (! A)
  • Use De Morgan (A && B) == !(!A || !B)

http://en.wikipedia.org/wiki/De_Morgan%27s_laws

share|improve this answer

To reverse*, true expressions should be false; and and operators should be or) :

if (!plist.Exists("No Update Ramdisk") 
    || !plist.Get<PlistBool>("No Update Ramdisk").Value)
{
    ...
}

*Assuming Get<PlistBool>("No Update Ramdisk").Value is a bool.

share|improve this answer
yes, this is what i want – Cole Johnson Apr 28 '12 at 19:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.