Math.Round(十进制)源代码:
public static Decimal Round(Decimal d) { return Decimal.Round(d,0); }
@L_301_0@
编辑:
为了澄清,decimal.cs类的源代码:
public static Decimal Round(Decimal d) { return Round(d,0); }