2012年12月8日
摘要: 1. c#时间格式转换汉字大写 比如: 2011年6月4日 转换成 二零一一年六月四日View Code 1 class Program 2 { 3 static void Main(string[] args) 4 { 5 6 //c#时间格式转换汉字大写 比如: 2011年6月4日 转换成 二零一一年六月四日 7 string date = "2011年6月4日"; 8 9 Console.WriteLine(Change(date));10 1... 阅读全文
posted @ 2012-12-08 14:53 何金洋 阅读(270) 评论(0) 推荐(0)