첨부 실행 코드는 나눔고딕코딩 폰트를 사용합니다.
------------------------------------------------------------------------------------------------------------------------------------------------------
728x90
728x170
using System;

#region 반올림하기 - Round(value, digitCount)

/// <summary>
/// 반올림하기
/// </summary>
/// <param name="value">값</param>
/// <param name="digitCount">자릿 수</param>
/// <returns>반올림 값</returns>
/// <remarks>
/// 자릿 수는 반올림하는 소숫점 이하 자릿 수이다.
/// </remarks>
public decimal DSRound(decimal value, int digitCount)
{
    return Math.Round(value, digitCount, MidpointRounding.AwayFromZero);
}

#endregion
728x90
그리드형(광고전용)
Posted by icodebroker
,