Top "Generic-collections" questions

A collection that supports generic typing of its elements

How to increase allocated memory ? {The function evaluation was disabled because of an out of memory exception.}

My goal is to load 1.48 million items from XML files into a in memory generic collections dictionary using C# ASP.…

c# asp.net-mvc memory memory-management generic-collections
How to convert LINQ query result to list and return generic List?

I used generic ORM list example. This is my table. Person table Guid Name LastName and this is my struct …

linq generics data-structures generic-collections
Convert Dictionary into structured format string

I have a Dictionary object declared as var as Dictionary(of String, String). I am trying to utilize the LINQ …

vb.net collections .net-4.0 generic-collections
Why there isn't a ReadOnlyList<T> class in the System.Collections library of C#?

Reading about the problem of creating a read only primitive vector in C# (basically, you cannot do that), public readonly …

c# readonly generic-collections
implementing compareTo() with generics and collection

i m working with collections and i cant figure this out... I want to override compareTO() method based on the "…

java sorting collections comparable generic-collections
How to Remove specific field from List

Class structure public class EmployeeDetails { public int Id { get; set; } public string Name { get; set; } public string Exp { get; set; } } …

c# list generic-list generic-collections
C#: 'IEnumerable<Student>' does not contain a definition for 'Intersect'

It's been long since I write a single line of code so, please, be patient if I am asking a …

c# linq ienumerable generic-collections
generic data structure in C

Is there any way to create generic data structure in C and use functions in accordance with the stored data …

c data-structures generic-collections
Set Collection for mutable objects in Java

In Java, a set only checks for equality of an object with objects already in the set only at insertion …

java collections set mutable generic-collections