본문 바로가기

Microsoft/C# & ASP.NET

CultureInfo 를 이용환 화폐 콤마 처리

아래와 같이 사용 하면 됨

digits 는 소숫점 자리 표시 


public decimal TypeMoney(object money,int digits)
        {
            CultureInfo culture = new CultureInfo(CultureInfo.InvariantCulture.LCID);
            culture.NumberFormat.NumberDecimalDigits = digits;
            return decimal.Parse(money.ToString(), culture);

        }


'Microsoft > C# & ASP.NET' 카테고리의 다른 글

MVC4 WebGrid 아이템 선택  (0) 2012.11.12
Mono GTK#  (0) 2012.11.09
ajax 기본구조  (0) 2012.10.29
C# Regular Expression (정규식 기호)  (0) 2012.10.23
리플렉션을 이용한 동적 코드 생성  (0) 2012.09.25