10 references to Round
mscorlib (10)
system\convert.cs (7)
682return Decimal.ToSByte(Decimal.Round(value, 0)); 785return Decimal.ToByte(Decimal.Round(value, 0)); 884return Decimal.ToInt16(Decimal.Round(value, 0)); 996return Decimal.ToUInt16(Decimal.Round(value, 0)); 1224return Decimal.ToUInt32(Decimal.Round(value, 0)); 1317return Decimal.ToInt64(Decimal.Round(value, 0)); 1423return Decimal.ToUInt64(Decimal.Round(value, 0));
system\decimal.cs (1)
772return Round(d, 0);
system\math.cs (2)
156return Decimal.Round(d,0); 160return Decimal.Round(d,decimals);