System.Data.SqlTypes.SqlSingle.ToSqlInt32 C# (CSharp) Méthode

ToSqlInt32() public méthode

public ToSqlInt32 ( ) : SqlInt32
Résultat SqlInt32
        public SqlInt32 ToSqlInt32()
        {
            return (SqlInt32)this;
        }

Usage Example

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