Top "Generic-list" questions

language-agnostic tag for a collection of items where each item has a certain position

Check that value exists in a Generic List of Values

I am trying to figure out how to check if testInt exists in all Car.SomeID in List So: int …

c# generic-list
How to handle the generic type Object with protocol buffers, in the .proto file?

I've spent some time looking for some alternative to handle generic objects, I've seen questions similar to mine, but not …

object protocol-buffers generic-list
sorting a generic list of doubles

I have a generic list of doubles that show on the page like this: 1199.17 1199.17 1161.67 1161.67 1161.67 1161.67 1161.67 1161.67 1161.67 1161.67 1161.67 1161.67 1161.67 1161.67 1161.67 1199.17 1349.17 1349.17 1349.17 1349.17 1349.17 1349.17 1311.67 1311.67 1311.67 1311.67 1311.67 1349.17 2174.17 2174.17 2174.17 2174.17 2136.67 2136.67 2136.67 2136.67 2174.17 2361.67 2361.67 2361.67 2361.67 2361.67 2361.67 2361.67 2361.67 2399.17 2849.17 2849.17 2849.17 2849.17 2849.17 2849.17 2849.17 2849.17 3111.67 3111.67 3111.67 3149.17 I am trying to order them …

c# .net generic-list
What's the implementation of List?

I read this code: List<long> userIdList = new List<long>(); But I jumped to the definition(…

c# .net generics generic-list
how to get byte size of type in generic list?

I have this generic list and I want to get the byte size of the type like if T is …

c# list byte sizeof generic-list
How do you programmatically add ListItems to DropDownList in ASP.NET?

I'm trying to add items to a dropdown list using a List of ListItems, but it's not picking up the …

asp.net drop-down-menu generic-list
Lists with wildcards cause Generic voodoo error

Does anyone know why the following code does not compile? Neither add() nor addAll() works as expected. Removing the "? extends" …

java generics generic-list generic-collections
How to sort the list with duplicate keys?

I have a set of elements/keys which I'm reading from two different config files. So the keys may be …

c# data-structures .net-2.0 generic-list
Removing items from a List(Of t) in vb.net failing

I have a generic list that I'm removing items out of using List.Remove(Object). I have been removing items …

.net vb.net list generic-list
Convert generic list to BindingList<T>

I have BindingList object which is attched with DataGridView. BindingList<FilesToProcessDataModels> Listfiles = new BindingList<FilesToProcessDataModels>(); dataGridFiles.…

c# winforms generic-list bindinglist