降序:

lstroot.Sort((x,y)=>y.static_count.CompareTo(x.static_count));

升序:

lstroot.Sort((x,y)=>x.static_count.CompareTo(y.static_count));

05-11 18:10