Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I write this if statement with conditional operator?

int TopicID = ...
int LastPost = ...

if (LastPost == 0) 
{
    LastPost = TopicID
} else 
{
    LastPost = LastPost;
}

I tried this:

LastPost == 0 ? LastPost == TopicID : LastPost == LastPost;

But it didn't work so as you can see im not really that pro.. :P

share|improve this question
What you tried is called a Ternary Operator. – Jared Farrish Oct 29 '11 at 12:04

1 Answer

up vote 1 down vote accepted
LastPost = (LastPost == 0 ? TopicID : LastPost);

Anyway, what is the sense of assigning LastPost to itself? Just remove your whole else block and you'll have the simplest way for what you're trying to achieve.

share|improve this answer

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.