FromTeraBytes method
- num value
Returns a ByteSize object initialized by size in TeraBytes.
var size = ByteSize.FromTeraBytes(10);
Implementation
static ByteSize FromTeraBytes(num value) =>
ByteSize(value * _BytesInTeraByte);
Returns a ByteSize object initialized by size in TeraBytes.
var size = ByteSize.FromTeraBytes(10);
static ByteSize FromTeraBytes(num value) =>
ByteSize(value * _BytesInTeraByte);