SqlChars.Explicit Operatore

Definizione

Effettua la conversione a una struttura SqlChars.

Overload

Explicit(SqlString to SqlChars)

Converte una struttura di SqlString in una struttura di SqlChars.

Explicit(SqlChars to SqlString)

Converte una struttura di SqlChars in una struttura di SqlString.

Explicit(SqlString to SqlChars)

Source:
SQLChars.cs
Source:
SQLChars.cs
Source:
SQLChars.cs

Converte una struttura di SqlString in una struttura di SqlChars.

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.

Restituisce

Struttura SqlChars.

Commenti

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

Vedi anche

Si applica a

Explicit(SqlChars to SqlString)

Source:
SQLChars.cs
Source:
SQLChars.cs
Source:
SQLChars.cs

Converte una struttura di SqlChars in una struttura di SqlString.

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.

Restituisce

Struttura SqlString.

Commenti

Il metodo equivalente per questo operatore è Object.ToString.

Vedi anche

Si applica a