SqlByte.Implicit(Byte to SqlByte) Operator

Definition

Converts the supplied byte value to a SqlByte.

public:
 static operator System::Data::SqlTypes::SqlByte(System::Byte x);
public static implicit operator System.Data.SqlTypes.SqlByte (byte x);
static member op_Implicit : byte -> System.Data.SqlTypes.SqlByte
Public Shared Widening Operator CType (x As Byte) As SqlByte

Parameters

x
Byte

A byte value to be converted to SqlByte.

Returns

A SqlByte structure whose Value property is equal to the supplied parameter.

Applies to

See also