Tagged Questions

Non-generic interface in .NET for collections of objects which can be accessed individually by index

learn more… | top users | synonyms

81
votes
14answers
38k views

C# - List<T> or IList<T>

Can anyone explain to me why I would want to use IList over List in C#? Related question: Why is it considered bad to expose List<T>
44
votes
2answers
12k views

IList vs IEnumerable for Collections on Entities

When I have entities in my domain with lists of things, should they be exposed as ILists or IEnumerables? E.g. Order has a bunch of OrderLines.
31
votes
4answers
461 views

Why array implements IList?

See the definition of System.Array class public abstract class Array : IList, ... Theoretically, I should be able to write this bit and be happy int[] list = new int[] {}; IList iList = ...
21
votes
14answers
34k views

Sorting an IList in C#

So I came across an interesting problem today. We have a WCF web service that returns an IList. Not really a big deal until I wanted to sort it. Turns out the IList interface doesn't have a sort ...
14
votes
1answer
3k views

Why IList<T> does not have Insert methods which take IEnumerable<T>?

I'm in a situation where I just want to append values in string array (type String[]) to an object with IList<String>. A quick look-up on MSDN revealed that IList<T>'s Insert method only ...
10
votes
4answers
466 views

Lock free & Thread-Safe IList<T> for .NET

Is there a lock-free & thread-safe data structure that implements IList? Naturally by lock-free I mean an implementation that makes no use of locking primitives in .NET but rather uses ...
10
votes
3answers
2k views

How to deep clone objects containing an IList property using AutoMapper

I am trying to deep clone the following class using AutoMapper: public class MainData { public MainData() { Details = new List<Detail>(); } public int Id { get; private ...
10
votes
7answers
2k views

Why does casting List<T> into IList<T> result in reduced performance?

I was doing some performance metrics and I ran into something that seems quite odd to me. I time the following two functions: private static void DoOne() { List<int> A = new ...
10
votes
10answers
6k views

Why is .ForEach() on IList<T> and not on IEnumerable<T>?

I've noticed when writing LINQ-y code that .ForEach() is a nice idiom to use. For example, here is a piece of code that takes the following inputs, and produces these outputs: { "One" } => "One" ...
10
votes
2answers
3k views

Best string container: StringCollection, Collection<string>, List<string>, ArrayList, ..?

What is the most suitable container just for strings holding in some array with non-predetermined upper boundary, which length is unknown on it's creation. For simple code like: var list = new ...
9
votes
5answers
609 views

Why IList<> has less feature than List<>?

To use such great function as ConvertAll(), I have to convert IList to List, it's painful.
9
votes
3answers
369 views

Why is there no IArray(T) interface in .NET?

Update 2011-Jan-06: Believe it or not, I went ahead and incorporated this interface into an open source library I've started, Tao.NET. I wrote a blog post explaining this library's IArray<T> ...
8
votes
4answers
147 views

Backdooring Generic Lists through IList

I have a scenario where a class loads objects of one type, due do abstractions I can not use a generic class (generics tend to spread like cancer :) but I often want to work with a generic version of ...
7
votes
4answers
365 views

Why does C# array not have Count property? [closed]

Possible Duplicate: count vs length vs size in a collection Really strange: C# arrays such as the following double[] test = new double[1]; support the Length property to get the size of ...
7
votes
7answers
622 views

Remove foreach - c# code-optimization

How to optimize this code? ParentDoglist, ChildDoglistis - Ilist. dogListBox - List Box foreach (Dog ParentDog in ParentDoglist) { foreach (Dog ChildDog in ChildDoglist) { ...
7
votes
3answers
409 views

What should I use an IEnumerable or IList?

Can anyone tell me when I should use either. For example, I think I should use an IList when I want to access the .Count of the collection or an individual item, correct? Thank you.
7
votes
5answers
25k views

C# Syntax - Split String into Array by Comma, Convert To Generic List, and Reverse Order

What is the correct syntax for this: IList<string> names = "Tom,Scott,Bob".Split(',').ToList<string>().Reverse(); What am I messing up? What does TSource mean?
6
votes
5answers
319 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
1answer
291 views

Is there a limit of elements that could be stored in a List?

Is there a limit of elements that could be stored in a List ? or you can just keeping adding elements untill you are out of memory ?
6
votes
3answers
834 views

IList using covariance and contravariance in c#, is this possible?

would this be possible? (I don't have vs. 2010, so I can't try it myself, sorry) public interface IComplexList<out TOutput, in TInput> where TOutput : TInput { public ...
5
votes
6answers
332 views

Implementing IList<T> results in two GetEnumerators

When I implement IList it requires two GetEnumerators. One is IEnumerator and the other is IEnumerator<T> - other than the obivous difference of return type shouldn't both return the same data? ...
5
votes
3answers
241 views

How Do I Sort IList<Class>?

There's no Sort() function for IList. Can someoene help me with this? I want to sort my own IList. Suppose this is my IList: public class MyObject() { public int number { get; set; } public ...
5
votes
3answers
442 views

Should I use an ArrayList or IList

Im using the .NET framework 1.1 and Im hoping someone could help me implement a dynamic array of objects? A watered-down example of the object I wish use is below. Class CarObj { public string ...
4
votes
3answers
85 views

Array co-variance in C# generic list

I have an example where I want an abstract class interface to return something like this abstract class AnimalProcessor { public abstract IList<Animal> ProcessResults(); } Then the ...
4
votes
2answers
116 views

Returning IList<IList<T>>

I have a method which builds lists of lists. I'd like to have the return type use the generic IList<> interface to reduce coupling with the concrete List<> type downstream. However, the compiler ...
4
votes
5answers
84 views

IList trouble. Fixed size?

I have this code : IList<string> stelle = stelleString.Split('-'); if (stelle.Contains("3")) stelle.Add("8"); if (stelle.Contains("4")) stelle.Add("6"); but seems that IList have a ...
4
votes
3answers
535 views

Difference between IEnumerable and IEnumerable<T>?

What is the difference between IEnumerable and IEnumerable<T>? I've seen many framework classes implementing both these interfaces, therefore I would like to know what advantages one get by ...
4
votes
1answer
205 views

How can i do something like IList<T>.Contains(OtherObjectType)?

I have the following classes: Client ClientCacheMedia ( contains Client, Media and some other parameters so it is the link between the media and the client) Media where client contains an IList. ...
4
votes
4answers
6k views

LINQ: help with “contains” and a Lambda query

I have a list which contains enums, its a standard Enum but has an attribute attached to it and an extension method which returns a CHAR of the enum (see below - GetCharValue), the extension works ...
4
votes
2answers
5k views

Checking of List equality in C# .Net not working when using Nhibernate

I seem to be having a problem with checking for list equality. In my case, I have two role objects and I want to see if they are equal. Each role contains a name and a List of permissions. Each ...
4
votes
1answer
149 views

Why do arrays support IList?

The IList interface requires an Add method. Arrays implement this function but it simply throws a NotImplementedException. This seems like very bad design to me. What were the designers thinking ...
4
votes
6answers
435 views

Which interface should I expose a List<T> via?

In a response to this question runefs suggested that "unless you have a very specific reason for using IList you should considere IEnumerable". Which do you use and why?
3
votes
4answers
55 views

How to get the items count from an IList<> got as an object?

In a method, I get an object. In some situation, this object can be an IList of "something" (I have no control over this "something"). I am trying to: Identify that this object is an IList (of ...
3
votes
2answers
231 views

WPF: What do I need to implement to make an extended IList( of T) bindable?

I'm extending IList so I can track the changes made to the list (updates, inserts and deletes). Everything is ok, but I can not bind any ItemsControl to it. Public Class TrackedList(Of T) ...
3
votes
3answers
309 views

C# chunked array

I need to allocate very large arrays of simple structs (1 GB RAM). After a few allocations/deallocations the memory becomes fragmented and an OutOfMemory exception is thrown. This is under 32 bit. ...
3
votes
1answer
94 views

Sparse sorted numeric sequence class for .NET

I'm in need of very specific class, I would really like to know if there is existing one, so I don't have to re-implement it. I have a set of items. Each item has a numeric value associated whit it - ...
3
votes
4answers
205 views

How do you work with IList<> in F#?

I have a list of type IList<Effort>. The model Effort contains a float called Amount. I would like to return the sum of Amount for the whole list, in F#. How would this be achieved?
3
votes
1answer
413 views

Memory Leak in large Array - Will subclassing IList fix it?

I need to improve memory performance on my application and I could see that I have problems with memory fragmentation. I've read an interesting article on large objects from Andrew Hunter of Red ...
3
votes
3answers
2k views

C# Beginner: Where has my IList.Where() method gone?

I've got another simple one (I think) that's stumping me. I have written a method in one of my controls that gets the latest version of a file in a CMS given it's filename (i.e. regardless of what ...
3
votes
5answers
410 views

Using a IList, how to populate it via a comma separated list of ID's

I have a property IList CategoryIDs, and a private string variable that contains a comma separated list, how to elegantly populate the IList collection? I asked earler and I learn a neat way of ...
3
votes
5answers
3k views

Implementing IList interface

I am new to generics. I want to implement my own collection by deriving it from IList<T> interface. Can you please provide me some link to a class that implements IList<T> interface or ...
3
votes
2answers
3k views

.NET / C# Binding IList<string> to a DataGridView

I have an IList<string> returning from a function (as variable lst) and I set and then I this.dataGridView1.DataSource = lst; The datagrid adds one column labelled Length and then lists ...
3
votes
5answers
791 views

FindLast on IEnumerable

I would like to call FindLast on a collection which implements IEnumerable, but FindLast is only available for List. What is the best solution?
3
votes
2answers
574 views

Binding Gtk# NodeView to a IList?

I've got a data object with a component in it that is an System.Collections.Generic.IList, and I'd like to reflect changes to that list into a Gtk# NodeView, so that when an item is added to the list, ...
2
votes
1answer
60 views

MVC 3 IList<T> Model Properties NULL on POST

I'll let the code do the talking here, I have something like this: class Problem { public string Title { get; set; } public string Description { get; set; } public virtual ...
2
votes
6answers
214 views

How to sort an iList (With linq or without) [closed]

Possible Duplicate: Sorting an IList in C# I have the following method and I need to sort the iList object that is being passed to it (inside this method). I have tried linq but since it's ...
2
votes
2answers
97 views

Why String.Length is returned instead of actual value in DataSource

I have this code which builds an IList<string>: IList<string> databases; using (MySqlConnection _conn = Session.Connection) using (MySqlCommand _cmd = _conn.CreateCommand("SHOW ...
2
votes
3answers
119 views

Dictionary<StudentType, List<Student>> to IDictionary<StudentType, IList<Student>>?

Please consider the following code: class Student { } enum StudentType { } static void foo(IDictionary<StudentType, IList<Student>> students) { } static void Main(string[] args) { ...
2
votes
2answers
86 views

Why does not the generic counterparts of IList and ICollection have the same set of methods?

Is there a particular reason to why the generic counterparts of IList and ICollection do not have the same set of methods and properties? They seem to have moved them around. Ex. IList<T> has ...
2
votes
1answer
334 views

c# Update Datagridview based on IList

I have a very simple class: People: class People { private string LastName = null; private string FirstName = null; private string Status = null; public string lastName { get { ...

1 2 3 4