System.Data.SqlTypes.SqlInt32.ToSqlSingle C# (CSharp) Method

ToSqlSingle() public method

public ToSqlSingle ( ) : SqlSingle
return SqlSingle
        public SqlSingle ToSqlSingle()
        {
            return this;
        }

Usage Example

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