Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
249 views

Why do Queue(T) and Stack(T) not implement ICollection(T)?

Before I even ask, let me get the obvious answer out of the way: The ICollection<T> interface includes a Remove method to remove an arbitrary element, which Queue<T> and Stack<T> ...
7
votes
6answers
4k views

What is the real advantage of returning ICollection<T> instead of a List<T>? [closed]

I've read a couple of blog posts mentioning that for public APIs we should always return ICollection (or IEnumerable) instead of List. What is the real advantage of returning ICollection instead of a ...
6
votes
8answers
122 views

Does an ICollection<T> have an order?

Following the rules that a public APIs should never return a list, i'm blinding converting all code that returned lists, to return ICollection<T> instead: public IList<T> ...
6
votes
3answers
412 views

Can I hide my ICollection<T> fields when I have a one-to-many mapping in EF4 code-only?

My domain classes that have one-to-many mappings generally take the following form (untested code): public Customer Customer { // Public methods. public Order AddOrder(Order order) { ...
6
votes
3answers
588 views

Need Duplicates Allowed In SortedCollection (C#, 2.0)

I have a project that I'm working on that requires changing a 'BaseSortedCollection' class to allow duplicates. The class currently implements IEnumerable, IDisposable, ICollection, and ...
5
votes
5answers
450 views

What is the easiest and most compact way to create a IEnumerable<T> or ICollection<T>?

So, many times we have a function that accepts an IEnumerable or ICollection as a parameter. In cases where we have single items, but no collection to hold them, we must create a collection before ...
5
votes
3answers
10k views

C# ICollection get single value

What is the best way to get a value from a ICollection? We know the Collection is empty apart from that.
4
votes
1answer
156 views

Using ASP.NET MVC 3 with Razor, what's the most effective way to add an ICollection to a Create view?

I'm using Entity Framework Code First to generated my database, so I have an object defined like the following: public class Band { public int Id { get; set; } [Required(ErrorMessage = "You ...
4
votes
2answers
334 views

Code contracts warnings when implementing ICollection with backing collection

I've got this code: public class MyCollection : ICollection<string> { private readonly ICollection<string> _inner = new Collection<string>(); public void Add(string item) ...
4
votes
3answers
546 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
2answers
841 views

ICollection vs ICollection<T>- Ambiguity between ICollection<T>.Count and ICollection.Count

Note: This is similar, but not quite the same as this other question I've implemented an IBusinessCollection interface. It dervies from both ICollection<T>, and the old-busted non-generic ...
4
votes
2answers
764 views

ICollection / ICollection<T> ambiguity problem

Just want to make simple extension for syntactic sygar : public static bool IsNotEmpty(this ICollection obj) { return ((obj != null) && (obj.Count > 0)); } public static bool ...
4
votes
2answers
3k views

Using LINQ with classes implementing non-generic ICollection

I wanted to run a LINQ query against a MatchCollection object but found this wasn't possible as it doesn't implement ICollection<T>, just ICollection. What is the best option for using LINQ ...
3
votes
5answers
146 views

Split a ICollection<T> with a delimiter sequence

This is for C# 3.5 I have ICollection that I'm trying to split into separate ICollections where the delimiter is a sequence. For example ICollection<byte> input = new byte[] { 234, 12, 12, ...
3
votes
2answers
375 views

Is it possible to use Microsoft.VisualStudio.QualityTools.UnitTesting.CollectionAssert on an IEnumerable<T>?

I have a testing scenario where I want to check if two collections are equal. I have found the class Microsoft.VisualStudio.QualityTools.UnitTesting.CollectionAssert, but it only works on ...
3
votes
2answers
749 views

Why is HashSet<T>.IsReadOnly explicit?

This var h = new HashSet<int>(); var r = h.IsReadOnly; does not compile. I have to do var r = ((ICollection<int>)h).IsReadOnly; why wasn't IsReadOnly implemented normally? (I'm not ...
2
votes
5answers
98 views

Easiest way to get “next” element in a sequence?

I've got an ICollection<SomeClass>. public class SomeClass { public string Text { get; set; } public bool IsPreferred { get; set; } } The items in there have been pre-ordered, so "next" ...
2
votes
3answers
299 views

ICollection<T> Vs List<T> in Entity Framework

I only watched a few webcasts before I went head first in to designing a few Entity Framework applications. I really didn't read that much documentation and I feel like I am suffering for it now. I ...
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
3answers
71 views

Is it possible to determine the current position when iterating an ICollection?

I have the following code: foreach(string reelid in unValidatedFeedersOnMachine.Keys) { _sqlString.Append("CompID = '").Append(reelid).Append("' "); } I need to add in that loop on each ...
2
votes
2answers
273 views

Problem With Repository Pattern & Abstract Classes

Come across a problem with the repository pattern combined with the use of abstract classes. I have a repository which implements a single method returning an ICollection of an abstract type. Here's ...
2
votes
5answers
227 views

What is the most basic class that inherits ICollection<T>

I need a generic collection class which I can add to, and enumerate over. Since ICollection<T> inherits from IEnumerable<T>, the class really just needs to inherit from ...
2
votes
1answer
359 views

Binding LinqToSql tables to Repeater

I have a class which retrieves the data from DB. [Table(Name = "Ilanlar")] public class Ilan { [Column(Name="ilan_id" ,IsPrimaryKey = true)] public int M_ilan_id; ...
2
votes
6answers
776 views

Is there a nice simple & elegant way to make ICollection more fluent in C#?

Example: I would like to have the Add method of ICollection of a custom collection class to implement method chaining and fluent languages so I can do this: ...
2
votes
3answers
1k views

Unittesting IList with CollectionAssert

The mstest framework has a CollectionAssert that accepts ICollections. My method returns an IList. Apparantly a list is not a collection.. Are there ways to make my IList an ICollection?
1
vote
4answers
91 views

Compare an ICollection members with itself

Is there any cheapest way to compare an ICollection with itself. Here is my code: public IEnumerable<Pet> speciesChecker() { foreach (Pet pet in _pets) ...
1
vote
1answer
43 views

Route event From Item to a Collection in MVVM

How can I do something like this? public class person { public ICommand Add_as_Friend { get; private set; } public event EventHandler C1_Friend_Add; //.... Add_as_Friend = new ...
1
vote
6answers
144 views

Add to an ICollection

I am currently writing a C# project and I need to do unit testing for the project. For one of the methods that I need to unit test I make use of an ICollection which is normally populated from the ...
1
vote
1answer
63 views

Casting a List<T> (where T : IBar) to ICollection<IBar> fails

I have classT, implementing interfaceIBar. I have a variable list of type List<T>. Two questions for enhancing my understanding of the language: Why doesn't this work? var foo = ...
1
vote
1answer
55 views

Limited size IList<T> or ICollection<T> that when adding a new item, first item is discarded

I'm looking for some sort of implementation of IList<T> or ICollection<T> that behaves in such a way that it can hold up to a specified amount of items. If adding a new item would ...
1
vote
3answers
96 views

Find an item inside a List<T> by providing a sample object instance

Why is there a List<T>.Contains(T) method but no List<T>.Find(T) method? Only the Finds that support predicates are supported. If we have an existing instance of T populated with a ...
1
vote
2answers
185 views

Why lock on Collection.SyncRoot instead of just lock the collection?

I'm trying to understand the point of the syncroot in ICollection. Why not just lock the collection? lock(myCollection) { //do stuff to myCollection } vs lock(myCollection.SyncRoot) { //do ...
1
vote
1answer
268 views

C# Get properties from SettingsPropertyCollection

I have profile provider in my web.config <profile defaultProvider="MyProvider"> <providers> ....... <properties> <add name="CustomField1" type="string" ...
1
vote
7answers
210 views

How to hide some members of an interface

I would like to create a custom collection that implements ICollection. But I would like not to expose some memebers of ICollection like Clear method. How to achieve this?
1
vote
3answers
235 views

Can't convert System.Object[] to System.Collections.Generic.List

I have a method with an object parameter. public bool ContainsValue(object value) I found that converting the object to an IList works. IList<object> list = (IList<object>)value; ...
1
vote
3answers
188 views

Is instantiating a Queue using {a,b,c} possible in C#?

Is it possible to do that in C#? Queue<string> helperStrings = {"right", "left", "up", "down"}; or do I have to produce an array first for that?
1
vote
4answers
211 views

Collection vs ICollection

I have created a dummy projet for testing collection and ICollection.I have a user class and wanted to create a collection.Example - ICollection<User> users = new Collection<User>(); ...
1
vote
1answer
947 views

Extracting [] elements from form collection - mvc - should use icollection but have mix of types

have looked at Phil Haacks project on books at http://haacked.com/archive/2008/10/23/model-binding-to-a-list.aspx which has been useful, but I have a mix of data types. I use a modelview so that ...
1
vote
2answers
73 views

What is the better approach to compare a collection with another (architecturely speaking)?

Here's an example of the architecture approach I favorited as for now: public abstract class CollectionComparer { public virtual SetEqual(IEnumerable enum1, IEnumerable enum2) { ...
1
vote
1answer
183 views

How to use CollectionAssert (and Linq?) to find all the values for one property, are the same?

this is an extension to a previous question I asked, today .... which highlighted the use of CollectionAssert to help test collections (which I never knew). I have an ICollection<Foo> foos; ...
1
vote
4answers
1k views

Why ICollection index does not work when instantiated?

When we declare a parameter as ICollection and instantiated the object as List, why we can't retrive the indexes? i.e. ICollection<ProductDTO> Products = new List<ProductDTO>(); ...
1
vote
3answers
596 views

T in class? AddRange ICollection?

I try to do static class, add to icollection but i got some issues i cant seem to overcome. that is how i get so i can pass a ICollection in the method? cause T is that say it can not be resolved. ...
1
vote
3answers
175 views

I can not access Count property of the array but through casting to ICollection !

int[] arr = new int[5]; Console.WriteLine(arr.Count.ToString());//Compiler Error Console.WriteLine(((ICollection)arr).Count.ToString());//works print 5 ...
1
vote
1answer
402 views

Can iBATIS.NET work with ICollection?

This question is in relation to another question I have: http://stackoverflow.com/questions/603808/using-ibatis-net-with-generic-custom-collection-interfaces-and-unity The problem seems to be that ...
1
vote
2answers
209 views

check whether an array is multidimensional

as I am implementing the ICollection-Interface in my class I want to implement the CopyTo-Method and I have to throw an Argument-exception if the array is multidimensional. What is meant by this? The ...
0
votes
1answer
87 views

ASP.NET MVC3, Collection inside Model using Forms GET method and is URL/SEO friendly

Let me describe the code I have and then I ask the question. I have such class public class MyModel { public virtual ICollection<SomeObject> fweek { get; set; } public virtual ...
0
votes
2answers
62 views

Passing ICollection as a argument

I am stuck with this simple looking code for over an hour now... I have few classes...and methods like this: abstract class ClassBase<SampleInterface> {//Some methods}; public class ...
0
votes
1answer
28 views

Adding the same items to many-to-many relation in EF 4.0

I have two entities in my domain model: public class Configuration : DomainEntity { public virtual ICollection<Hardware> Hardwares { get; set; } public ...
0
votes
1answer
177 views

Relationships between tables mvc3

I'm building website in MVC 3. i am using EF code first in existing database. my ET inside the model look like that: public class Pages { [Required] public int ID { get; set; } public ...
0
votes
1answer
91 views

Why does not WhereSelectArrayIterator implement ICollection?

In looking at System.Linq.Enumerable through Reflector i noticed that default iterator used for Select and Where extension methods - WhereSelectArrayIterator - does not implement ICollection ...

1 2