c#
文章平均质量分 71
Zdreamcsdn
这个作者很懒,什么都没留下…
展开
-
C#输入日期显示该日期当天为星期几
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using System.W原创 2017-05-29 23:19:34 · 2018 阅读 · 0 评论 -
C#字符串格式化总结
1、格式化货币(跟系统的环境有关,中文系统默认格式化人民币,英文系统格式化美元)string.Format("{0:C}",0.2) 结果为:¥0.20 (英文操作系统结果:$0.20)默认格式化小数点后面保留两位小数,如果需要保留一位或者更多,可以指定位数 string.Format("{0:C1}",23.15) 结果为:¥23.2 (截取会自动四舍五入)格式化多个原创 2017-06-09 16:05:34 · 371 阅读 · 0 评论