Top "Generic-list" questions

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

NUnit comparing two lists

OK so I'm fairly new to unit testing and everything is going well until now. I'm simplifying my problem here, …

c# nunit generic-list
c# array vs generic list

i basically want to know the differences or advantages in using a generic list instead of an array in the …

c# arrays generic-list
How to cast or convert List of objects to queue of objects

How can one convert a list of objects to a queue thereby maintaining the same order?

c# object queue generic-list
Jersey can produce List<T> but cannot Response.ok(List<T>).build()?

Jersey 1.6 can produce: @Path("/stock") public class StockResource { @GET @Produces(MediaType.APPLICATION_JSON) public List<Stock> get() { Stock …

java json jaxb jersey generic-list
Jackson JSON + Java Generics get LinkedHashMap

I have a question which is similar to some questions at stackoverflow but none really answer my problem. I use …

java generics jackson generic-list linkedhashmap
WCF: Serializing and Deserializing generic collections

I have a class Team that holds a generic list: [DataContract(Name = "TeamDTO", IsReference = true)] public class Team { [DataMember] private …

c# .net wcf serialization generic-list
Pass List as Sql Table Type Parameter

I'm trying to pass the list of my class as DbParameter. Probably the table type is defined in my stored …

c# wpf sql-server-2012 generic-list
serialize/deserialize List<T> to JSON

I want to be able to serialize/deserialize a generic list what I so far is this public static string …

c# json serialization generic-list
C# serialize generic list<customObject> to file

i got a class which holds info about pictures, like filepath, hashvalue, bytes. in another class i got a generic …

c# serialization generic-list
Merge and Update Two Lists in C#

I have two List<T> objects: For example: List 1: ID, Value where Id is populated and value is …

c# .net linq list generic-list