摘要: byte[] bt = new byte[1];bt[0] = 25;BitArray ba = new BitArray(bt);for (int i = 0; i < ba.Count; i++){textBox1.Text += Convert.ToInt16(ba[i]) + " ";}结果:1 0 0 1 1 0 0 0 阅读全文
posted @ 2012-03-16 23:32 garyChong 阅读(633) 评论(0) 推荐(0) 编辑