c#
puloon
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C#判定BIG5编码的方式
Boolean IsBig5(string strOne) { Boolean bIsBig5 = false; byte[] ByteArrayBig5 = System.Text.Encoding.GetEncoding("big5").GetBytes(strOne); if (ByteArrayBig5.Le原创 2008-06-03 16:45:00 · 1351 阅读 · 0 评论 -
Stream 和 byte[] 之间的转换
/* - - - - - - - - - - - - - - - - - - - - - - - - * Stream 和 byte[] 之间的转换 * - - - - - - - - - - - - - - - - - - - - - - - *//// /// 将 Stream 转成 byte[]/// public byte[] StreamToBytes(Stream stream){原创 2008-06-09 11:49:00 · 535 阅读 · 0 评论 -
sqlite数据类型对应的 .NET 数据类型名称
我们在C#下使用Access,MS sql,Sqlite,Oracle数据库中 数据库数据类型 分别使用到 System.Data.OleDb.OleDbType ---(Access) System.Data.SqlClient.SqlDbType原创 2008-09-08 14:35:00 · 3102 阅读 · 0 评论
分享