System.Data.SqlTypes.SqlInt16.ToSqlInt64 C# (CSharp) Method

ToSqlInt64() public method

public ToSqlInt64 ( ) : SqlInt64
return SqlInt64
        public SqlInt64 ToSqlInt64()
        {
            return this;
        }

Usage Example

Beispiel #1
0
 /// <summary>
 /// Converts the value of the specified SqlInt16 to its equivalent SqlInt64 representation.
 /// </summary>
 /// <param name="value">An SqlInt16.</param>
 /// <returns>The equivalent SqlInt64.</returns>
 public static SqlInt64 ToSqlInt64(SqlInt16 value) { return value.ToSqlInt64(); }
All Usage Examples Of System.Data.SqlTypes.SqlInt16::ToSqlInt64