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

ToSqlInt32() public method

public ToSqlInt32 ( ) : SqlInt32
return SqlInt32
        public SqlInt32 ToSqlInt32()
        {
            return (SqlInt32)this;
        }

Usage Example

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