CSharp examples for System.Collections.Generic:List
Random Element from List
using System.Collections.Generic; using System;//from ww w.ja v a 2 s. c o m public class Main{ public static T RandomElement<T>(this List<T> list) { var random = new Random(); return list[random.Next(list.Count)]; } }