Add method

ByteSize Add (
  1. ByteSize bs
)

Returns the sum of two ByteSize objects.

Implementation

ByteSize Add(ByteSize bs) => ByteSize(Bytes + bs.Bytes);