Advertisement
Guest User

Untitled

a guest
May 28th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.08 KB | None | 0 0
  1. if (condition) {
  2.     foo = a;
  3. } else {
  4.     foo = b;
  5. }
  6. //
  7. foo = condition ? a : b;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement