Int64Value.Implicit Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Implicit(Int64 to Int64Value) |
Implicitly converts an Int64 value to an Int64Value value. |
Implicit(Int64Value to Int64) |
Implicitly converts the specified Int64Value to an Int64 value. |
Implicit(Int64 to Int64Value)
Implicitly converts an Int64 value to an Int64Value value.
public static implicit operator DocumentFormat.OpenXml.Int64Value (long value);
static member op_Implicit : int64 -> DocumentFormat.OpenXml.Int64Value
Public Shared Widening Operator CType (value As Long) As Int64Value
Parameters
- value
- Int64
The specified value.
Returns
A new Int64Value instance with the value.
Applies to
Implicit(Int64Value to Int64)
Implicitly converts the specified Int64Value to an Int64 value.
public static implicit operator long (DocumentFormat.OpenXml.Int64Value xmlAttribute);
public static implicit operator long (DocumentFormat.OpenXml.Int64Value value);
static member op_Implicit : DocumentFormat.OpenXml.Int64Value -> int64
static member op_Implicit : DocumentFormat.OpenXml.Int64Value -> int64
Public Shared Widening Operator CType (xmlAttribute As Int64Value) As Long
Public Shared Widening Operator CType (value As Int64Value) As Long
Parameters
- xmlAttributevalue
- Int64Value
Returns
The converted Int64 value.
Exceptions
Thrown when value
is null
.