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

ToSqlInt64() public method

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

Usage Example

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