tagged [list]

How can List<T>.Item Property be O(1)? Typo?

How can List.Item Property be O(1)? Typo? I'm implementing a priority queue and want to iterate through the list to insert at the right spot. In the documentation it states that C# `List.Item` Propert...

3 Apr at 05:4

Use empty list in ServiceStack.Redis

Use empty list in ServiceStack.Redis In ServiceStack.Redis, a list with a key is present in redis, only if the list contains at least a single entry. If all the entries are removed from that particula...

Which games include coding in gameplay?

Which games include coding in gameplay? One title per answer.

20 Jan at 20:0

in what situation will an item in System.Collections.Generic.List not be removed successfully?

in what situation will an item in System.Collections.Generic.List not be removed successfully? in what situation will an item in System.Collections.Generic.List not be removed successfully? From [http...

20 May at 10:10

How does one add a LinkedList<T> to a LinkedList<T> in C#?

How does one add a LinkedList to a LinkedList in C#? One would think the simple code would work, however apparently in C#'s LinkedList, First, Last, and their properties are Get only. The other method...

8 Jul at 04:33

Default Capacity of List

Default Capacity of List What is the default capacity of a List?

24 Feb at 06:28

List<T> to DataView

List to DataView How to convert List to a dataview in .Net.

1 Oct at 12:14

Comparing generic list to an array

Comparing generic list to an array Why is the generic.list slower than array?

6 Nov at 17:28

convert list<int> to list<long>

convert list to list How to convert `List` to `List` in C#?

21 Jul at 02:55

How to convert list to string

How to convert list to string How can I convert a list to a string using Python?

14 Sep at 19:41