程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C#中金額格式數據處理的一些方法

C#中金額格式數據處理的一些方法

編輯:C#入門知識

1 using System; 
  2 using System.Collections.Generic; 
  3 using System.Linq; 
  4 using System.Text; 
  5 using System.Text.RegularExpressions; 
  6  
  7 namespace SystemFramework.CommonFunctions 
  8 { 
  9     /// <summary> 
 10     /// Summary description for MoneyLib. 
 11     /// </summary> 
 12     public class MoneyManage 
 13     { 
 14         public MoneyManage() 
 15         { 
 16             // 
 17             // TODO: Add constructor logic here 
 18             // 
 19         } 
 20  
 21         /// <summary> 
 22         /// 檢查一個字符串是否Decimal,如果不是返回0.00 
 23         /// </summary> 
 24         /// <param name="strInput"></param> 
 25         /// <returns></returns> 
 26         public static string SetNullDecimal(string strInput) 
 27         { 
 28             if (!strInput.Trim().Equals("") && IsNumeric(strInput)) 
 29                 return strInput; 
 30             return "0.00"; 
 31         } 
 32  
 33         public

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved