Advertisement
maxrusmos

Untitled

Apr 15th, 2020
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1.  
  2. using System;
  3. using ComplexOp;
  4.  
  5. namespace EventCustomOp {
  6. public sealed class EventCustom : EventArgs {
  7. private ComplexNum _numLeft;
  8. private ComplexNum _numRight;
  9.  
  10. public EventCustom(ComplexNum numerator, ComplexNum denumerator) {
  11. _numLeft = numerator;
  12. _numRight = denumerator;
  13. }
  14.  
  15. public override string ToString() {
  16. return $"Деление на ноль {_numLeft} / {_numRight}";
  17. }
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement