摘要: using System;using System.Collections.Generic;namespace Lsense.Cn.Commons { public class MyConvert { /// <summary> /// 用2的幂的和表示一个整形数组 /// </summary> public static int BitsToInt32(List<Int16> v) { int sum = 0; if(v != null && v.Count > 0) { foreach(int i in v) { if(i > 阅读全文
posted @ 2011-10-19 14:43 肚肚 阅读(195) 评论(0) 推荐(0) 编辑