码迷,mamicode.com
首页 > 数据库 > 详细

mysql中的longblob类型

时间:2014-09-02 19:22:35      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:style   blog   os   ar   数据   div   sp   log   on   

char[]与string互相转换

string 转换成 Char[]
  string ss = "abcdefg";
  char[] cc = ss.ToCharArray();

Char[] 转换成string
  string s = new string(cc);

 

此外,byte[] 与 string 之间的装换
  byte[] bb = Encoding.UTF8.GetBytes(ss);
  string s = Encoding.UTF8.GetString(bb);

mysql中的longblob类型

标签:style   blog   os   ar   数据   div   sp   log   on   

原文地址:http://www.cnblogs.com/XzcBlog/p/3951924.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!