2011年8月15日 星期一

[.NET] C# 常用function整理(五) 西元年轉民國年






#region ADToRepublic()
///
/// 西元年轉民國年
///

/// ///
public static string ADToRepublic(this string ADDate)
{
try
{
if (ADDate != null && ADDate.Length > 0)
{
string[] temps = ADDate.Split('/');

if (temps.Length == 3)
{
ADDate = string.Format("{0}/{1}/{2}",
Convert.ToInt32(temps[0]) - 1911,
temps[1],
temps[2]);
}
}
}
catch { }

return ADDate;
}
#endregion

沒有留言:

張貼留言