文章分类 -  DotNet积累

摘要:本来想画方格图,结果成这样代码如下:private void PaintMe() { int tWidth = this.Width; int tHeight = this.Height; Graphics g = this.CreateGraphics(); g.FillRectangle(new SolidBrush(this.BackColor), 0, 0, tWidth, tHeight); int x = tWidth / m_GridSize.Width; int y = tHeight / m_GridSize.Height; Pen pGrid = new Pe... 阅读全文
posted @ 2010-05-09 20:08 星a 阅读(183) 评论(0) 推荐(0)
摘要:可以通过BitConverter类来将字节数组转换为其它类型返回类型方法boolToBoolean(Byte[], Int32)charToChar(Byte[], Int32)doubleToDouble(Byte[], Int32)shortToInt16(Byte[], Int32)intToInt32(Byte[], Int32)longToInt64(Byte[], Int32)floa... 阅读全文
posted @ 2010-05-06 20:10 星a 阅读(881) 评论(0) 推荐(0)
摘要:C# Byte数组转换String解决方案: 将一个包含ASCII编码字符的Byte数组转化为一个完整的String,可以使用如下的方法: ASCIIEncoding类的GetString方法可以将byte数组中的7-BitsASCII字符转换为一个String;任何大于127的值将被转化为两个字符。在System.Text命名空间中你可以找到ASCIIEncoding类,查找该类的GetSt... 阅读全文
posted @ 2010-05-06 19:43 星a 阅读(5764) 评论(0) 推荐(1)