如何隨機抽取一個列表並訂購它?ASP.net按順序隨機排列
List<Testimonial> testimonials = new List<Testimonial>();
testimonials.Add(new Testimonial {1});
testimonials.Add(new Testimonial {2});
testimonials.Add(new Testimonial {2});
testimonials.Add(new Testimonial {3});
testimonials.Add(new Testimonial {4});
我將如何使用
testimonials.OrderBy<>
,以使其隨機的?
您應在此處包含解決方案的相關部分,並將鏈接作爲參考。 – ChrisF 2011-06-09 14:47:44
這工作完美。沒有問題我將把它作爲幫手附加,以便我可以在我的項目中將其用於其他事情。 – brenjt 2011-06-09 15:01:58
林間空地聽到:) – 2011-06-09 15:09:55