Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. int abc = 7;
  2.  
  3. try {
  4. SomeMethod();
  5. } catch (SomeException e) {
  6. // here e is unused, but during debug we can inspect exception details
  7. DoSomethingAboutIt();
  8. }
  9.  
  10. SomeClass Func() {
  11. // ...stuff...
  12. var ret = FinalComputationResult(thing, foo, bar);
  13. // ret is unused, but while debugging allows checking return value.
  14. return ret;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement