本文整理汇总了C#中System.Data.SqlTypes.SqlMoney.ToSqlInt32方法的典型用法代码示例。如果您正苦于以下问题:C# SqlMoney.ToSqlInt32方法的具体用法?C# SqlMoney.ToSqlInt32怎么用?C# SqlMoney.ToSqlInt32使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Data.SqlTypes.SqlMoney
的用法示例。
在下文中一共展示了SqlMoney.ToSqlInt32方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ToSqlInt32
/// <summary>Converts the value from <c>SqlMoney</c> to an equivalent <c>SqlInt32</c> value.</summary>
public static SqlInt32 ToSqlInt32(SqlMoney p) { return p.ToSqlInt32(); }
示例2: ToSqlInt32
/// <summary>
/// Converts the value of the specified SqlMoney to its equivalent SqlInt32 representation.
/// </summary>
/// <param name="value">An SqlMoney.</param>
/// <returns>The equivalent SqlInt32.</returns>
public static SqlInt32 ToSqlInt32(SqlMoney value) { return value.ToSqlInt32(); }
示例3: op_Explicit
public static SqlByte op_Explicit(SqlMoney x)
{
if(x.IsNull)
return SqlByte.Null;
int val = x.ToSqlInt32().Value;
if (val < 0 || val > 255)
throw new OverflowException("Arithmetic Overflow.");
return new SqlByte((byte)val);
}