コード例 #1
0
ファイル: Localization.cs プロジェクト: lulzzz/BrandStore
        public static string FormatDecimal2Places(string temp)
        {
            decimal dec = Localization.ParseDBDecimal(temp);

            return(dec.ToString("N2"));
        }