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

ToSqlByte() public method

public ToSqlByte ( ) : SqlByte
return SqlByte
        public SqlByte ToSqlByte()
        {
            return (SqlByte)this;
        }

Usage Example

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