ByteValue.Implicit Operator

定義

オーバーロード

名前 説明
Implicit(Byte to ByteValue)

指定したByte値を暗黙的に変換して、ByteValue クラスの新しいインスタンスを初期化します。

Implicit(ByteValue to Byte)

指定した値を Byte 値に暗黙的に変換します。

Implicit(Byte to ByteValue)

指定したByte値を暗黙的に変換して、ByteValue クラスの新しいインスタンスを初期化します。

public static implicit operator DocumentFormat.OpenXml.ByteValue(byte value);
static member op_Implicit : byte -> DocumentFormat.OpenXml.ByteValue
Public Shared Widening Operator CType (value As Byte) As ByteValue

パラメーター

value
Byte

Byte値。

返品

値を持つ新しい ByteValue インスタンス。

適用対象

Implicit(ByteValue to Byte)

指定した値を Byte 値に暗黙的に変換します。

public static implicit operator byte(DocumentFormat.OpenXml.ByteValue xmlAttribute);
public static implicit operator byte(DocumentFormat.OpenXml.ByteValue value);
static member op_Implicit : DocumentFormat.OpenXml.ByteValue -> byte
static member op_Implicit : DocumentFormat.OpenXml.ByteValue -> byte
Public Shared Widening Operator CType (xmlAttribute As ByteValue) As Byte
Public Shared Widening Operator CType (value As ByteValue) As Byte

パラメーター

xmlAttributevalue
ByteValue

返品

変換された Byte 値。

例外

valueが null の場合にスローされます。

適用対象