ByteQuantifiedSize.Subtraction operator (ByteQuantifiedSize, UInt64)
Subtracts a 64-bit integer value from a ByteQuantifiedSize instance.
Namespace: Microsoft.Exchange.Data
Assembly: Microsoft.Exchange.Data (in Microsoft.Exchange.Data.dll)
Syntax
'Declaration
Public Shared Operator - ( _
value1 As ByteQuantifiedSize, _
value2 As ULong _
) As ByteQuantifiedSize
'Usage
Dim value1 As ByteQuantifiedSize
Dim value2 As ULong
Dim returnValue As ByteQuantifiedSize
returnValue = (value1 - value2)
public static ByteQuantifiedSize operator -(
ByteQuantifiedSize value1,
ulong value2
)
Parameters
value1
Type: Microsoft.Exchange.Data.ByteQuantifiedSizeThe byte-quantified size to subtract the value from.
value2
Type: System.UInt64The value to subtract.
Return value
Type: Microsoft.Exchange.Data.ByteQuantifiedSize
A new byte-quantified size that reflects the subtraction of the value of the value1 parameter from the value of the value2 parameter.