operator + method

BinarySize operator +(
  1. BinarySize other
)

Implementation

BinarySize operator +(BinarySize other) => BinarySize()..bytesCount = bytesCount + other.bytesCount;