SqlString.Explicit 运算符

定义

SqlString 作为目标或者源进行转换。

重载

Explicit(SqlString to String)

SqlString 转换为 String

Explicit(SqlSingle to SqlString)

将指定的 SqlSingle 参数转换为 SqlString

Explicit(SqlMoney to SqlString)

将指定的 SqlMoney 参数转换为 SqlString

Explicit(SqlInt64 to SqlString)

将指定的 SqlInt64 参数转换为 SqlString

Explicit(SqlInt16 to SqlString)

将指定的 SqlInt16 参数转换为 SqlString

Explicit(SqlInt32 to SqlString)

将指定的 SqlInt32 参数转换为 SqlString

Explicit(SqlDouble to SqlString)

将指定的 SqlDouble 参数转换为 SqlString

Explicit(SqlDecimal to SqlString)

将指定的 SqlDecimal 参数转换为 SqlString

Explicit(SqlDateTime to SqlString)

将指定的 SqlDateTime 参数转换为 SqlString

Explicit(SqlByte to SqlString)

将指定的 SqlByte 结构转换为 SqlString

Explicit(SqlBoolean to SqlString)

将指定的 SqlBoolean 结构转换为 SqlString

Explicit(SqlGuid to SqlString)

将指定的 SqlGuid 参数转换为 SqlString

Explicit(SqlString to String)

SqlString 转换为 String

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

参数

x
SqlString

要转换的 SqlString

返回

String

一个 String,它的内容与 SqlString 参数的 Value 属性相同。

另请参阅

适用于

Explicit(SqlSingle to SqlString)

将指定的 SqlSingle 参数转换为 SqlString

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

参数

x
SqlSingle

要转换的 SqlSingle 结构。

返回

SqlString

一个新的 SqlString,包含 SqlSingle 参数的字符串表示形式。

注解

此运算符 SqlSingle.ToSqlString()的等效方法是 。

另请参阅

适用于

Explicit(SqlMoney to SqlString)

将指定的 SqlMoney 参数转换为 SqlString

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

参数

x
SqlMoney

要转换的 SqlMoney 结构。

返回

SqlString

一个新的 SqlString,包含 SqlMoney 参数的字符串表示形式。

注解

此运算符的等效方法为 SqlMoney.ToSqlString()

另请参阅

适用于

Explicit(SqlInt64 to SqlString)

将指定的 SqlInt64 参数转换为 SqlString

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

参数

x
SqlInt64

要转换的 SqlInt64 结构。

返回

SqlString

一个新的 SqlString 对象,包含 SqlInt64 参数的字符串表示形式。

注解

此运算符的等效方法为 SqlInt64.ToSqlString()

另请参阅

适用于

Explicit(SqlInt16 to SqlString)

将指定的 SqlInt16 参数转换为 SqlString

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

参数

x
SqlInt16

要转换的 SqlInt16 结构。

返回

SqlString

一个新的 SqlString 对象,包含 SqlInt16 参数的字符串表示形式。

注解

此运算符的等效方法为 SqlInt16.ToSqlString()

另请参阅

适用于

Explicit(SqlInt32 to SqlString)

将指定的 SqlInt32 参数转换为 SqlString

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

参数

x
SqlInt32

要转换的 SqlInt32 结构。

返回

SqlString

一个新的 SqlString 对象,包含 SqlInt32 参数的字符串表示形式。

注解

此运算符的等效方法为 SqlInt32.ToSqlString()

另请参阅

适用于

Explicit(SqlDouble to SqlString)

将指定的 SqlDouble 参数转换为 SqlString

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

参数

x
SqlDouble

要转换的 SqlDouble 结构。

返回

SqlString

一个新的 SqlString,包含 SqlDouble 参数的字符串表示形式。

注解

此运算符的等效方法为 SqlDouble.ToSqlString()

另请参阅

适用于

Explicit(SqlDecimal to SqlString)

将指定的 SqlDecimal 参数转换为 SqlString

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

参数

x
SqlDecimal

要转换的 SqlDecimal 结构。

返回

SqlString

一个新的 SqlString,包含 SqlDecimal 参数的字符串表示形式。

注解

此运算符的等效方法为 SqlDecimal.ToSqlString()

另请参阅

适用于

Explicit(SqlDateTime to SqlString)

将指定的 SqlDateTime 参数转换为 SqlString

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

参数

x
SqlDateTime

要转换的 SqlDateTime 结构。

返回

SqlString

一个新的 SqlString,包含 SqlDateTime 参数的字符串表示形式。

注解

此运算符的等效方法为 SqlDateTime.ToSqlString()

另请参阅

适用于

Explicit(SqlByte to SqlString)

将指定的 SqlByte 结构转换为 SqlString

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

参数

x
SqlByte

要转换的 SqlByte 结构。

返回

SqlString

一个新的 SqlString 对象,包含 SqlByte 参数的字符串表示形式。

注解

此运算符的等效方法为 SqlByte.ToSqlString()

另请参阅

适用于

Explicit(SqlBoolean to SqlString)

将指定的 SqlBoolean 结构转换为 SqlString

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

参数

x
SqlBoolean

要转换的 SqlBoolean 结构。

返回

SqlString

一个新的 SqlString,包含 SqlBoolean 参数的字符串表示形式。

注解

此运算符的等效方法为 SqlBoolean.ToSqlString()

另请参阅

适用于

Explicit(SqlGuid to SqlString)

将指定的 SqlGuid 参数转换为 SqlString

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

参数

x
SqlGuid

要转换的 SqlGuid 结构。

返回

SqlString

一个 SqlString,它的值是指定的 SqlGuid 的字符串表示形式。

注解

此运算符的等效方法为 SqlGuid.ToSqlString()

另请参阅

适用于