1、对一个双重链表,如何按照其内部链表长度将内部链表排序,比如List<List<T>> llt ; 我想依照内层llt[i].Count的大小对llt内部元素排序....2、在WinForm中toolStripStatusLabel显示当前系统时间,我拖了一个timer,设置enable为true,intervel为1000,代码为: private void timer1_Tick(object sender, EventArgs e)
        {
            DateTime dt = DateTime.Now.ToLocalTime();
            this.toolStripStatusLabel1.Text = dt.ToString();
        } 
可是程序运行是不显示时间,请问我那个地方有错误...