Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
5answers
11k views

Remove duplicates in the list using linq

I have a class Items with properties (Id, Name, Code, Price). The List of Items is populated with duplicated items. For ex.: 1 Item1 IT00001 $100 2 Item2 ...
19
votes
5answers
17k views

How can I easily convert DataReader to List<T>?

I have data in a DataReader which I want to be converted to a List<T>. What is a possible simple solution for this? For e.g. in CustomerEntity class, I have CustomerId and CustomerName ...
14
votes
7answers
3k views

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 below mentioned scenario Class Employee { private _empName; Public EmpName { get{return ...
14
votes
3answers
8k views

In .Net, how do you convert an ArrayList to a strongly typed generic list without using a foreach?

See the code sample below. I need the ArrayList to be a generic List. ArrayList arrayList = GetArrayListOfInts(); List<int> intList = new List<int>(); //Can this foreach be ...
10
votes
4answers
175 views

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://msdn.microsoft.com/en-us/library/cd666k3e.aspx: true if item is successfully removed; ...
10
votes
3answers
4k views

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 IList<Person> members = new ...
8
votes
3answers
731 views

Thread Safety of C# List<T> for readers

I am planning to create the list once in a static constructor and then have multiple instances of that class read it (and enumerate through it) concurrently without doing any locking. In this article ...
8
votes
3answers
2k views

Converting a List of Base type to a List of Inherited Type

I would be certain that this question addresses something that would have been brought up in a previous question, but I was unable to find it. There is a method in a C# class that takes as a ...
7
votes
6answers
206 views

How can I detect adds to a generic list in C# 4.0?

I have a subclass of List<Location> called LocationList. This is a convenient way for us to add other properties (like IsExpanded and such that we can use in the UI. Good enough. But now, we ...
7
votes
1answer
313 views

convert .NET generic List to F# list

Is there a built-in method to convert the .NET List<> into the F# list?
7
votes
4answers
3k views

How can I sort List<T> based on properties of T?

My Code looks like this : Collection<NameValueCollection> optionInfoCollection = .... List<NameValueCollection> optionInfoList = new List<NameValueCollection>(); optionInfoList = ...
7
votes
1answer
25k views

C# Update combobox bound to generic list

I have a combobox on my form that is bound to a generic list of string like this: private List<string> mAllianceList = new List<string>(); private void FillAllianceList() { // Add ...
6
votes
1answer
59 views

List.ForEach in vb.net - perplexing me

Consider the following code example: TempList.ForEach(Function(obj) obj.Deleted = True End Function) And this one: TempList.ForEach(Function(obj) obj.Deleted = True) I would ...
6
votes
5answers
320 views

Why List<> implements IList [closed]

Possible Duplicate: Why does (does it really?) List implement all these interfaces, not just IList? Out of curiosity, what is the reason behind generic List<> implementing non-generic ...
6
votes
2answers
268 views

How to initialize a TList<T> in one step using Delphi?

I am sure this is a easy question, but I cannot get it to run: var FMyList: TList<String>; begin FMyList := TList<String>.Create(?????); end; How to insert instead of ????? to ...
6
votes
4answers
339 views

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" part makes everything work, but then I would not be able to add ...
6
votes
6answers
198 views

Speeding up the loading of a List of images

I'm loading a List<Image> from a folder of about 250 images. I did a DateTime comparison and it takes a full 11 second to load those 250 images. That's slow as hell, and I'd very much like to ...
5
votes
3answers
212 views

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 string or int etc., I tried both ways as written in getByteSize(), and just to let you know I am using only one way at ...
5
votes
4answers
307 views

C#, objectCollection.OfType<T>() and foreach (T item in objectCollection), IEnumerable to IEnumerable<T>

To my personal coding style belongs Enumerable.OfType<T>(). I use it everywhere it makes a little bit of sense. Especially IEnumerable<T> allows mighty linqToObject functionallity. I hate ...
5
votes
6answers
3k views

How to OrderBy on a generic IEnumerable (IEnumerable<T>) using LINQ in C#?

In my generic repository I have below method: public virtual IEnumerable<T> GetAll<T>() where T : class { using (var ctx = new DataContext()) { var table = ...
4
votes
1answer
258 views

Required Attribute on Generic List Property

Is it possible to put a [Required] attribute onto a List<> property? I bind to a generic list on POST and was wondering if I could make ModelState.IsValid() fail if the property has 0 items in it? ...
4
votes
4answers
147 views

Where Can I Find List<T>.AddRange() Method?

I have some old school looking code that is as follows: IList<KeyValuePair<string, ValuePair>> ServicePairs = new List<KeyValuePair<string, ValuePair>>(); // ... foreach ...
4
votes
2answers
844 views

How to bind a ComboBox to a generic List with deep DisplayMember and ValueMember properties?

I am trying to bind a generic list like List Parents to a ComboBox. public Form1() { InitializeComponent(); List<Parent> parents = new List<Parent>(); ...
4
votes
3answers
175 views

Generic List of Generic Interfaces not allowed, any alternative approaches?

I am trying to find the right way to use a Generic List of Generic Interfaces as a variable. Here is an example. It is probably not the best, but hopefully you will get the point: public interface ...
4
votes
3answers
210 views

C#: returning an inherited class from an instance of its base class (generic list)

This is probably me just remembering things completely backwards, but I'd like to know more about what I'm doing wrong... I have declared a class to be nothing more than a direct inheritance from a ...
4
votes
4answers
393 views

C#: Why return a collection interface rather than a concrete type?

I've noticed in other people's code that methods returning generic collections will almost always return an interface (e.g. IEnumerable or IList) rather than a concrete implementation. I have two ...
4
votes
1answer
353 views

How do I filter a generic list in .Net2.0?

I am using asp.net 2.0 and C#. I have a generic list, List<EmployeeInfo> empInfoList; this list is loaded with the employee information. Now, I want to filter this list with the textbox ...
4
votes
4answers
652 views

Is there something like List<String, Int32, Int32> (multidimensional generic list)

I need something similar to List<String, Int32, Int32>. List only supports one type at a time, and Dictionary only two at a time. Is there a clean way to do something like the above (a ...
4
votes
3answers
1k views

How to unit test Thread Safe Generic List in C# using NUnit?

I asked a question about building custom Thread Safe Generic List now I am trying to unit test it and I absolutely have no idea how to do that. Since the lock happens inside the ThreadSafeList class I ...
4
votes
3answers
1k views

How make custom Thread Safe Generic List return the whole list in C#?

I am a threading noob and I am trying to write a custom thread safe generic list class in C# (.NET 3.5 SP1). I've read Why are thread safe collections so hard?. After reviewing the requirements of the ...
4
votes
2answers
2k views

How to subtract one generic list from another in C#2.0

First of all, it very well could be that I'm approaching my problem the wrong way, in which case I'd gladly accept alternatives. What I'm trying to achieve is to detect which drive was created after ...
4
votes
4answers
2k views

C# - List<T>.Remove() always deletes the first object on the list

Working in Visual Studio 2008 (C#)... I use a List collection to store instances of my custom class (Shift). I want to delete a certain shift from the list by using the Remove method. But ...
4
votes
7answers
2k views

Why does my attempt to trim strings in a List<string> not appear to work?

I tried the following code in LINQPad and got the results given below: List<string> listFromSplit = new List<string>("a, b".Split(",".ToCharArray())).Dump(); ...
3
votes
1answer
174 views

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 list where i put objects from the class that holds picture info. that class looks like ...
3
votes
4answers
70 views

Contains is always false, because reference is not the same?

I am implementing an application, in which you have to validate if some object is in a list. This happens with .contains I know, but I fill up my list with an XML file, and then the object which I ...
3
votes
1answer
469 views

Jackson JSON + Java Generics get LinkedHashMap

I had a question who is similarly some questions at stackoverflow but I get not really an answer for my problem. I use the objectmapper of jackson and want to parse a JSON string like that to an List ...
3
votes
1answer
254 views

Whats the 'modern' way to find common items in two Lists<T> of objects?

I have two Generic Lists containing different types, for the sake of example, lets call them Products and Employees. I'm trying to find Products that are based at the same location as Employees, i.e. ...
3
votes
2answers
603 views

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 stock = new Stock(); ...
3
votes
2answers
233 views

Confusing result of “GetElementType” on arrays and generic lists

Generic list: var elementType1 = typeof (List<A>).GetElementType(); Array: var elementType = typeof (A[]).GetElementType(); Why do I only get the element type of an array? How could I get ...
3
votes
1answer
911 views

Convert list of one type to list of another type in C# 3.5

I have an object, with ID and Name properties. I have a list of the objects, but I want to convert it to a list of strings containing the name of the object. I'm guessing there's some fancy Linq ...
3
votes
8answers
2k views

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 same but with different values associated with each of them. I want to list them in the sorted ...
3
votes
5answers
235 views

Fastest way to check a List<T> for a date

I have a list of dates that a machine has worked on, but it doesn't include a date that machine was down. I need to create a list of days worked and not worked. I am not sure of the best way to do ...
3
votes
5answers
753 views

Iterate through a DataTable to find elements in a List object?

As I iterate through a DataTable object, I need to check each of its DataRow objects against the items in a generic string List. I found a blog post using the List's Find method along with a ...
3
votes
1answer
676 views

ASP.NET MVC View / Partial with generics

I have written a List`1 editor template for use with the EditorFor extension methods (MVC2), however I am running into issues when using generics + null objects. Given a model class MyModel { ...
3
votes
2answers
653 views

C# exposing class to COM - Generic Collections

We have a small framework written in C# .Net 2.0 that we want to expose to COM. Problem is, we have some generic classes that would be exposed as the following: interface IOurClass { ...
3
votes
3answers
2k views

Help converting generic List<T> to Excel spreadsheet

I am trying to create a function that accepts a generic List<T> and iterates the list returning an excel file byte[]. The function needs be able to determine the objects properties. So if i pass ...
3
votes
2answers
452 views

.Net - When is List<T>.ForEach prefered over a standard foreach loop?

The generic list class has a .ForEach(Action<T> action) method. Now i've done some simple timings of how they both perform and it seems that the generic ForEach is the poorer performer. The ...
3
votes
2answers
1k views

How to use XMLSerializer with a Castle ActiveRecord containing an IList<T> member

I am trying to use the XMLSerializer with a castle active record class which looks like the following: [ActiveRecord("Model")] public class DataModel : ActiveRecordBase { private ...
3
votes
3answers
4k views

How do I use System.Data.DataTableExtensions' CopyToDataTable method?

I'd like to create a data table given a List using the CopyToDataTable method available in DataTableExtensions. I've previously asked the question How do I transform a List into a DataSet? and got an ...
2
votes
1answer
35 views

UserControl with List<T> property - any chance for declarative definition?

I have a UserControl with the following Property: public List<Rect> HotSpots { get { return (List<Rect>)GetValue(HotSpotsProperty); } set { SetValue(HotSpotsProperty, value); } } ...

1 2 3 4