Guest User

Untitled

a guest
Oct 18th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. public class Foo
  2. {
  3. public void GetValue(out int result) { result = 0; }
  4. public void GetValue(out bool result) { result = true; }
  5. }
  6.  
  7. //Later...
  8. int i;
  9. bool b;
  10. foo.GetValue(out i);
  11. foo.GetValue(out b);
Add Comment
Please, Sign In to add comment