2022年8月25日

C# 金额转大写

摘要: /// <summary> /// 金额转大写 /// </summary> /// <param name="s"></param> /// <returns></returns> public static string AmountToChinese(double s) { s = Math. 阅读全文

posted @ 2022-08-25 18:02 糯米白白 阅读(121) 评论(0) 推荐(0) 编辑

C#中ToString数据类型格式大全(千分符)总结

摘要: 用DataFormatString格式化GridView 在 GridView里面显示数据,要显示的数据有好多位小数,就想让它只显示两位小数,在delphi里,直接用DisplayFormat就行了, 在.net中,查了半天msdn,发现使用DataFormatString是可以实现这个功能的,但是 阅读全文

posted @ 2022-08-25 15:20 糯米白白 阅读(391) 评论(0) 推荐(0) 编辑

SQLite 将字符串拼接

摘要: SQLite中不是使用的‘+’来操作,是需要使用特殊符号“||” 例如:如果是其他字段形式的需要先装换为 字符型 使用CAST(字段名 as TEXT) select CAST(column as TEXT) || '%' from table 用'||'拼接字符串 比如column是100的话 那 阅读全文

posted @ 2022-08-25 14:07 糯米白白 阅读(2463) 评论(0) 推荐(0) 编辑

导航