maxrusmos

Untitled

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