Как можно узнать с помощью консоли разработчика Chrome, есть ли у элементов HTML в сложном дереве функция event.preventDefault ()

    public static List<T> Randomize<T>(List<T> list)
    {
        List<T> randomizedList = new List<T>();
        Random rnd = new Random();
        while (list.Count > 0)
        {
            int index = rnd.Next(0, list.Count); //pick a random item from the master list
            randomizedList.Add(list[index]); //place it at the end of the randomized list
            list.RemoveAt(index);
        }
        return randomizedList;
    }
1
задан zaggi 18 January 2019 в 15:56
поделиться