c#小Tip:数字格式化显示
摘要:
using System;class FormattingNumbers{ static void Main() { decimal theDecNumber = 12345.678m; //the "m" creates a literal of type decimal from a double //Using the ToString Method //the num... 阅读全文
posted @ 2006-08-10 09:37 无为而为-凡事从积极的态度做起 阅读(1261) 评论(0) 推荐(0) 编辑