Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. class CalculatorDivideFunction
  2. {
  3.  
  4. internal void GetResultByDivide(int p1, int p2)
  5. {
  6. if (p2 == 0)
  7. {
  8. throw new DivideByZeroException("Dividor can not be 0 !!");
  9. }
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement