class Program { class TestEnqueue { static Queue<string> str = new Queue<string>(); public static void AddEnqueue() { ; i < ; i++) { string s= i.ToString(); Console.WriteLine("Task1 now runing"); str.Enqueue(s); } } public static
很久没有写ASP.NET了,今天有看到论坛上一个问题:"两个dropDownList和一个GridView,已经进行了数据绑定,现在想让第一个下拉菜单的数据改变时,第二个下拉菜单自动变到相应的数据,同时选中gridview中相对应的行,不知道如何实现,很急,求大神相助" 其实,实现起来算得上简单,下面先从准备数据开始,创建一个对象Customer: source code: using System; using System.Collections.Generic; using Sy
stackoverflow上有人问,为什么不能把委托放在一个接口当中? 投票最多的第一个答案第一句话说,“A Delegate is just another type, so you don't gain anything by putting it inside the interface.” 翻译过来大致意思就是:委托只是一种类型,把委托放在接口中你什么也得不到. 看上去挺拗口的,如果你也感觉这句话说的不知所云,那么只能求助于MSDN的接口和委托的定义. 接口:只包含方法.属性.事件或索引