11 2015 档案

摘要:很多文章都有写到Hashtable有内部的排序机制,如果要自定义排序的话就要自己写算法来实现的:听起来很抽象,我一向喜欢简单实用的东西,我下面就来总结总结怎样来实现自定义排序Hashtable.先看看普通的Hashtable的基本实现:publicstaticvoidMain(){Hashtable... 阅读全文
posted @ 2015-11-16 17:28 皮皮木有小JJ 阅读(1323) 评论(0) 推荐(0)
摘要:第一种,把Array数组绑到dropdownlist程序代码string[] Month =new string[7]{ "January", "February", "March", "April", "May", "June", "July" };this.DropDownList1.DataS... 阅读全文
posted @ 2015-11-06 17:06 皮皮木有小JJ 阅读(266) 评论(0) 推荐(0)
摘要:类名:public class Messageback{ public string errcode { get; set; } public string errmsg { get; set; }}public class MessageInfo{ public string t... 阅读全文
posted @ 2015-11-06 16:42 皮皮木有小JJ 阅读(2467) 评论(0) 推荐(0)
摘要:一、一维:int[] numbers = new int[]{1,2,3,4,5,6}; //不定长int[] numbers = new int[3]{1,2,3};//定长二、多维int[,] numbers = new int[,]{{1,2,3},{1,2,3}}; //不定长int[,] ... 阅读全文
posted @ 2015-11-02 17:35 皮皮木有小JJ 阅读(4044) 评论(0) 推荐(0)