i sometimes use this kind of if in my code:
!Value == null ? DoSomething : DoSomethingElse;
and i was wondering what is the proper name for an if else statement like that.
also, i wonder if there can only be a if part, without the else in the same structure.