首页 > Web开发 > 详细

.net扩展方法——对小数进行取位,默认保留2个小数点

时间:2020-08-13 14:47:56      阅读:98      评论:0      收藏:0      [点我收藏+]

.net扩展方法——对小数进行取位,默认保留2个小数点

 

        #region 对小数进行取位

        /// <summary>
        /// 对小数进行取位,默认保留2个小数点
        /// </summary>
        /// <param name="dcmal"></param>
        /// <param name="point"></param>
        /// <returns></returns>
        public static decimal Round(this decimal dcmal, int point = 2)
        {
            return Math.Round(dcmal, point);
        }

        /// <summary>
        /// 对小数进行取位,默认保留2个小数点
        /// </summary>
        /// <param name="dcmal"></param>
        /// <param name="point"></param>
        /// <returns></returns>
        public static decimal Round(this decimal? dcmal, int point = 2)
        {
            return Math.Round(dcmal ?? 0, point);
        }

        /// <summary>
        /// 对小数进行取位,默认保留2个小数点
        /// </summary>
        /// <param name="dcmal"></param>
        /// <param name="point"></param>
        /// <returns></returns>
        public static double Round(this double dcmal, int point = 2)
        {
            return Math.Round(dcmal, point);
        }

        #endregion 对小数进行取位

 

.net扩展方法——对小数进行取位,默认保留2个小数点

原文:https://www.cnblogs.com/amusement1992/p/13495998.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!