12 references to Decimal
mscorlib (4)
system\runtime\compilerservices\decimalconstantattribute.cs (4)
29dec = new System.Decimal((int) low, (int)mid, (int)hi, (sign != 0), scale); 40dec = new System.Decimal(low, mid, hi, (sign != 0), scale); 81return new System.Decimal(low, mid, hi, (sign != 0), scale); 92return new System.Decimal(low, mid, hi, (sign != 0), scale);
System.Data (5)
fx\src\data\System\Data\OleDb\ColumnBinding.cs (1)
780return new Decimal(
fx\src\data\System\Data\SqlClient\SqlBuffer.cs (2)
202return new Decimal(_value._numericInfo.data1, _value._numericInfo.data2, _value._numericInfo.data3, !_value._numericInfo.positive, _value._numericInfo.scale); 211return new Decimal((int)(l & 0xffffffff), (int)(l >> 32), 0, isNegative, 4);
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (1)
1137return new Decimal((int)m_data1, (int)m_data2, (int)m_data3, !IsPositive, m_bScale);
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (1)
173return new Decimal(unchecked((int)value), unchecked((int)(value >> 32)), 0, fNegative, (byte)x_iMoneyScale);
System.Numerics (1)
System\Numerics\BigInteger.cs (1)
1330return new Decimal(lo, mi, hi, value._sign < 0, 0);
System.Xml (2)
System\Xml\BinaryXml\SqlUtils.cs (2)
428return new Decimal((int)m_data1, (int)m_data2, (int)m_data3, !IsPositive, m_bScale); 562return new Decimal(unchecked((int)v), unchecked((int)(v >> 32)), 0, neg, MoneyScale);