Guest User

Untitled

a guest
Jul 17th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. var settings = new Settings() {
  2. A = true,
  3. B = ... //Everything is fine since A is true
  4. }
  5.  
  6.  
  7. var settings = new Settings() {
  8. A = false,
  9. B = ... //Compile Error, Settings does not contain definition for "B"
  10. }
  11.  
  12. //Somewhere that uses the settings variable...
  13. if(A) { useB(B); } else { useDefault(); }
Add Comment
Please, Sign In to add comment