码迷,mamicode.com
首页 > 其他好文 > 详细

格式转换

时间:2014-12-14 14:35:08      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:style   io   ar   sp   on   bs   ef   as   tt   

服务器的字符串一般是byte[]格式

byte[]转string(c#)

byte[] byteArray = System.Text.Encoding.Default.GetBytes(str);

string str = System.Text.Encoding.Default.GetString(byteArray);

byte[]转char[]

GetChars

 

uint转int

uint n = 3;

int i = checked((int)n); // throws OverflowException if n > Int32.MaxValue

int i = unchecked((int)n); // converts the bits only i will be negative if n > Int32.MaxValue

int i = (int)n; // same behavior as unchecked

or 

int i = Convert.ToInt32(n); // same behavior as checked

 

 

格式转换

标签:style   io   ar   sp   on   bs   ef   as   tt   

原文地址:http://www.cnblogs.com/yushui/p/4162508.html

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