7 references to Decimal
mscorlib (1)
system\decimal.cs (1)
1060return new Decimal(value);
System.Data (3)
fx\src\data\System\Data\SqlClient\TdsEnums.cs (2)
23public static readonly Decimal SQL_SMALL_MONEY_MIN = new Decimal(-214748.3648); 24public static readonly Decimal SQL_SMALL_MONEY_MAX = new Decimal(214748.3647);
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (1)
128public SqlMoney(double value) : this(new Decimal(value)) {
System.Windows.Forms (2)
winforms\Managed\System\WinForms\Printing\PrintPreviewDialog.cs (2)
1492pageCounter.Minimum = new Decimal(0d); 1493pageCounter.Maximum = new Decimal(1000d);
System.Xml (1)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
3287return new Decimal(GetDouble(this.tokDataPos));