SqlChars.Explicit Operator

Definition

Converts to a SqlChars structure.

Overloads

Explicit(SqlString to SqlChars)

Converts a SqlString structure to a SqlChars structure.

Explicit(SqlChars to SqlString)

Converts a SqlChars structure to a SqlString structure.

Explicit(SqlString to SqlChars)

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

Converts a SqlString structure to a SqlChars structure.

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

Parameters

value
SqlString

The SqlString structure to be converted.

Returns

A SqlChars structure.

Remarks

The equivalent method for this operator is SqlChars.SqlChars(SqlString).

See also

Applies to

Explicit(SqlChars to SqlString)

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

Converts a SqlChars structure to a SqlString structure.

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

Parameters

value
SqlChars

The SqlChars structure to be converted.

Returns

A SqlString structure.

Remarks

The equivalent method for this operator is Object.ToString.

See also

Applies to