decimal保留千分位

public static string Decimal2Str(decimal value)

{

if (value == 0)

{ return string.Empty;

}

else

{ return value.ToString("N");

}

}

posted @ 2013-04-24 15:10  717806198  阅读(393)  评论(0编辑  收藏  举报