SqlChars.Explicit 运算符
定义
重载
| Explicit(SqlString to SqlChars) |
将 SqlString 结构转换为 SqlChars 结构。Converts a SqlString structure to a SqlChars structure. |
| Explicit(SqlChars to SqlString) |
将 SqlChars 结构转换为 SqlString 结构。Converts a SqlChars structure to a SqlString structure. |
Explicit(SqlString to 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
参数
返回
SqlChars 结构。A SqlChars structure.
注解
此运算符的等效方法为 SqlChars.SqlChars(SqlString) 。The equivalent method for this operator is SqlChars.SqlChars(SqlString).
适用于
Explicit(SqlChars to 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
参数
返回
SqlString 结构。A SqlString structure.
注解
此运算符的等效方法为 Object.ToString 。The equivalent method for this operator is Object.ToString.