# DBLib **Repository Path**: ggshihai/DBLib ## Basic Information - **Project Name**: DBLib - **Description**: 一些常用的操作类库.QQ群:257018781 - **Primary Language**: C# - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 1 - **Created**: 2015-12-25 - **Last Updated**: 2024-11-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #DBLib /* * 项目地址:http://git.oschina.net/ggshihai/DBLib * Author:DeepBlue * QQ群:257018781 * Email:xshai@163.com * 说明:一些常用的操作类库. * 额外说明:东拼西凑的东西,没什么技术含量,爱用不用,用了你不吃亏,用了你不上当,不用你也取不了媳妇... * -------------------------------------------------- * -----------我是长长的美丽的善良的分割线----------- * -------------------------------------------------- * 我曾以为无惧时光荏苒 如今明白谁都逃不过似水流年 * -------------------------------------------------- */ 封装了一些常用的方法: **一般直接引用 _DBLib_ 这个项目,其它的类似DBLib.Tools这些项目其实可以忽略** 然后就可以,如 ``` string test = "test"; //转成时间 DateTime dt = test.ToDateTime(); //转成int int intTest = test.ToInt(); //转成Decimal decimal de = test.ToDecimal(); //格式化日期 string formatDate = DateTime.Now.ToYyyyMMdd(); ``` 等等等等等... 还有其它一些...