using System;
using System.Collections.Generic;
using System.Text;
namespace Common
{
///
/// long数据拓展
///
public static class DoubleExtension
{
///
/// 返回指定位数的数值
///
///
///
///
public static double Round(this double Value,int decimals=2)
{
return Math.Round(Value, decimals);
}
}
}