Subtract method

ByteSize Subtract (
  1. ByteSize bs
)

Returns the difference of two ByteSize objects.

Implementation

ByteSize Subtract(ByteSize bs) =>
    ByteSize(Bytes - bs.Bytes);