SqlInt16 to SqlInt64 Conversion
.NET Framework 1.1
Converts the supplied SqlInt16 parameter to SqlInt64.
[Visual Basic] returnValue = SqlInt64.op_Implicit(x) [C#] public static implicit operator SqlInt64( SqlInt16 x ); [C++] public: static SqlInt64 op_Implicit( SqlInt16 x ); [JScript] returnValue = x;
[Visual Basic] In Visual Basic, you can use the conversion operators defined by a type, but you cannot define your own.
[JScript] In JScript, you can use the conversion operators defined by a type, but you cannot define your own.
Arguments [Visual Basic, JScript]
- x
- The SqlInt16 structure to be converted.
Parameters [C#, C++]
- x
- The SqlInt16 structure to be converted.
Return Value
A new SqlInt64 structure whose Value property equals the Value property of the SqlInt16 parameter.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, .NET Compact Framework
See Also
SqlInt64 Structure | SqlInt64 Members | System.Data.SqlTypes Namespace