byte_size
byte_size
ByteSize
Add method
Add
byte_size
byte_size
ByteSize
Add method
ByteSize class
Constructors
ByteSize
Properties
Bits
Bytes
GigaBytes
KiloBytes
MegaBytes
PetaBytes
TeraBytes
hashCode
runtimeType
Methods
Add
AddBits
AddBytes
AddGigaBytes
AddKiloBytes
AddMegaBytes
AddPetaBytes
AddTeraBytes
compareTo
Subtract
ToString
noSuchMethod
toString
Operators
operator +
operator -
operator <
operator <=
operator ==
operator >
operator >=
Static methods
FromBits
FromBytes
FromGigaBytes
FromKiloBytes
FromMegaBytes
FromPetaBytes
FromTeraBytes
GetMaxValue
GetMinValue
Parse
TryParse
Add
method
ByteSize
Add
(
ByteSize
bs
)
Returns the sum of two ByteSize objects.
Implementation
ByteSize Add(ByteSize bs) => ByteSize(Bytes + bs.Bytes);