摘要: static int[] MergeTwoArray(int[] intArr1, int[] intArr2) { if (intArr1 == null || intArr2 == null || intArr1.Length == 0 || intArr2.Length == 0) { throw new Exception("Input cann't be null."); } for (int i = 0; i < intArr1.Len... 阅读全文
posted @ 2012-02-06 09:27 Ligeance 阅读(647) 评论(0) 推荐(0) 编辑