SqlChars.Explicit Operatore

Definizione

Converte in una SqlChars struttura.

Overload

Nome Descrizione
Explicit(SqlString to SqlChars)

Converte una SqlString struttura in una SqlChars struttura.

Explicit(SqlChars to SqlString)

Converte una SqlChars struttura in una SqlString struttura.

Explicit(SqlString to SqlChars)

Converte una SqlString struttura in una SqlChars struttura.

public:
 static explicit operator System::Data::SqlTypes::SqlChars ^(System::Data::SqlTypes::SqlString value);
public static explicit operator System.Data.SqlTypes.SqlChars(System.Data.SqlTypes.SqlString value);
static member op_Explicit : System.Data.SqlTypes.SqlString -> System.Data.SqlTypes.SqlChars
Public Shared Narrowing Operator CType (value As SqlString) As SqlChars

Parametri

value
SqlString

Struttura SqlString da convertire.

Valori restituiti

Struttura SqlChars.

Commenti

Il metodo equivalente per questo operatore è SqlChars.SqlChars(SqlString).

Vedi anche

Si applica a

Explicit(SqlChars to SqlString)

Converte una SqlChars struttura in una SqlString struttura.

public:
 static explicit operator System::Data::SqlTypes::SqlString(System::Data::SqlTypes::SqlChars ^ value);
public static explicit operator System.Data.SqlTypes.SqlString(System.Data.SqlTypes.SqlChars value);
static member op_Explicit : System.Data.SqlTypes.SqlChars -> System.Data.SqlTypes.SqlString
Public Shared Narrowing Operator CType (value As SqlChars) As SqlString

Parametri

value
SqlChars

Struttura SqlChars da convertire.

Valori restituiti

Struttura SqlString.

Commenti

Il metodo equivalente per questo operatore è Object.ToString.

Vedi anche

Si applica a