Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
281 views

Generic Container in C++

I'm attempting to create a generic container type to provide a single common interface, as well as hide the internal containers I'm using as they are subject to change. Basically I have plugins that ...
6
votes
4answers
338 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
1k views

C# / .NET equivalent for Java Collections.<T>emptyList()?

What's the standard way to get a typed, readonly empty list in C#, or is there one? ETA: For those asking "why?": I have a virtual method that returns an IList (or rather, post-answers, an ...
5
votes
2answers
174 views

Why wouldn't C# support generics of generics (generics with parameterized types)?

Recently (perhaps of design shortcomings) I faced a regular task when required to have a collection of MyType<T> where T is not fixed (i.e. multiple various generics instantiations throughout ...
4
votes
4answers
67 views

List interface: from Java to C#

I'm a Java programmer learning C# these days. Usually in Java when using lists, it should be preferrable programming against its interface in order to switch between implementations: ...
4
votes
6answers
220 views

.NET - Is there a generic collection with a key/value pair where key can occur more than once?

I want to use a generic collection like Dictionary, but Dictionary requires that every key be unique. I have multiple values for the same "key", so I need a generic collection that will allow for ...
2
votes
3answers
81 views

How do i add items to a generic collection?

Given: public static void DoStuff<T>(ICollection<T> source) { Customer c = new Customer(); .... source.Add(c); } except c is not of type <T>. So how do i add an item ...
2
votes
2answers
74 views

How do I avoid compiler warnings when generic type information is unavailable?

I'm using Spring's RestTemplate to make calls against a REST web service. One of these calls is to return a list of objects of a certain type. The RestTemplate methods require that a class argument be ...
2
votes
1answer
81 views

Unmarshalling a TreeSet in JAXB

I have a class that I wish to populate with content from an XML file using JAXB. My XML file looks similar to this: <root> <mylist> <item id="1">First Item</item> ...
2
votes
4answers
152 views

c# Array or Collection

How would you approach this? I have a list of data that has two things that need to be stored price and item, is there anyway to store this in an array without knowing the total number of rows that I ...
2
votes
4answers
199 views

Is there a collection in .NET that works as a dictionary and list at the same time?

What I want is basically a collection that's a hybrid of a dictionary and a list. I want a collection that I can add key/value pairs to (like a Dictionary), but at the same be able to retrieve the ...
1
vote
1answer
35 views

Duplicating an object in List<T>

Time for my first question! I want to make it known that I'm quite amateur with programming, and I probably don't fully understand the terms I'm about to use. I'm making a program that takes the ...
1
vote
5answers
53 views

C#: finding class fields in a List

I have the following code: class exampleClass { int var1; int var2; string var3 } List<exampleClass> myList = new List<exampleClass>() myList.Add(new exampleClass { var1 = ...
1
vote
1answer
31 views

Can't understand the Exception when using dynamic with generic collection in .net4

check the code below please: static void Main(string[] args) { IList<dynamic> items = new List<dynamic>(); items.Add(3); items.Add("solid"); dynamic i = new ...
1
vote
1answer
72 views

Anyone know of a good LinkedDictionary/Hashed LinkedList?

I am in need of a Generic collection that is somewhere in between a Dictionary and LinkedList. I want to be able to: Access elements by key Access previous and next elements I've taken a look at ...
1
vote
6answers
147 views

C# foreach on a collection of an interface

I'm wondering if there is any functionality built in to C#/LINQ to simplify the following: foreach(var item in collection) { if (item.GetType() == typeof(Type1) DoType1(item as Type1); ...
1
vote
4answers
103 views

Specific generic type of lists within a list

I have a list of lists. I would like to know how I can restrict the generic types of each of the inner lists so each element of the outer list contains an inner list that can only contain one type ...
1
vote
1answer
131 views

Incomplete System.Collections.Generic in Visual C# 2010 Express

I'm trying to access System.Collections.Generic.Stack<> in Visual C# 2010 Express, but the IDE (and compiler) claim that it's not present. Several other classes are also missing, including ...
1
vote
3answers
74 views

Adding sorted data into a hashtable or Dictionary while reading the data from file

I have a file with contains as A,15 B,67 C,45 D,10 I am reading the data from file, but i wanted to read the data into a dictionary or hashtable but the data sould be sorted into it by its value ...
1
vote
1answer
97 views

Linq Concating a list of tags with count from an inner collection of an outer collection

I'm trying to write a single Linq Query that can concat inner collections of tags from an outer collection of parent products and return a collection of Tags with a consolidated count ordered ...
1
vote
3answers
426 views

Use java.util.Map from Scala

I need to use java-legacy code with the following method: public void doit(Map <String, Object> vals) {...} My Scala code: var map = new java.util.HashMap[String, Any] map += "testme" -> ...
1
vote
3answers
353 views

template style matrix implementation in c

From time to time I use the following code for generating a matrix style datastructure typedef double myType; typedef struct matrix_t{ ...
1
vote
2answers
696 views

C# - how to create an inherited generic collection from a factory method

I am trying to write a factory method that will create a derived instance of an abstract generic collection class. Here are the base classes ... abstract class ItemBase { } abstract class ...
1
vote
3answers
482 views

Sort List alternative in c#

I have a number of objects, all from the same class(ColorNum) Each object has 2 member variabels (m_Color and m_Number) Example: ColorNum1(Red,25) ColorNum2(Blue,5) ColorNum3(Red,11) ...
0
votes
1answer
46 views

One object pool to contain different derived classes

Short version: How would i go about creating an object pool that can store classes of different types all derived from the same base class? See below for an example of expected usage. Long ...
0
votes
0answers
42 views

Why does AbstractMap use generic types and standard Objects interchangeably? [closed]

Possible Duplicate: What are the reasons why Map.get(Object key) is not (fully) generic http://docs.oracle.com/javase/1.5.0/docs/api/java/util/AbstractMap.html For example, the put method ...
0
votes
3answers
55 views

Intersect differently typed Collections

I have Collection<A> ca and Collection<B> cb, A and B sharing no common interface but each having a String property called something. I need to filter ca and retain only those elements ...
0
votes
1answer
127 views

Populate Nested ObservableCollection

I have a class public class Owner { public int OwnerId{get; set;} public int OwnerName{get; set;} public ObservableCollection<Owner> SubOwner{get; set;} } The data returned from DB is ...
0
votes
0answers
52 views

IDictionary<T,K> : Using custom class as key

I was using IDictionary<KeyClass, ValueClass> in one of my projects. The KeyClass is very simple containing just two integers. public class KeyClass { public int ValueA{get;set;} public ...
0
votes
1answer
227 views

SortedSet add confusion

When I run the code below only 8 of the 50 files in the directory get added. The files are named like 0001, 0002, 0003, 0004, etc. The files that get added are in this order: 7,0,1,2,3,4,5,6 ...
0
votes
1answer
57 views

How to filter a List<Customer> filled with Objects

I have a class Person and a list of type List<Person> class person { int id; string FirstName; string LastName; } I have ten Person objects filled it the List. My List is bound ...
0
votes
3answers
173 views

How do you find an element index in a Collection<T> inherited class?

How do you find the index of an element in a Collection inherited class? public class MyCollection : Collection<MyClass> { // implementation here } I tried to use .FindIndex on the ...
0
votes
1answer
298 views

SortedList<K,V> vs SortedDictionary<K,V> vs Dictionary<K,V>

I have a large collection of small objects, each has a unique string ident. I need to decide which class to use. MSDN says about the first two The two classes have similar object models, and ...
0
votes
3answers
89 views

Collection Variable Question

Lets say that I have a generic collection in the string format. I want to extra the values to a label how would I go about doing that ive tried a few things ive read on here but cant seem to get it to ...
0
votes
3answers
484 views

Phone Directory Example

I am trying to make a simple phone directory program in windows console application. I have used SortedDictionary in which Key is name and Value is number, List for address and StringDictionary for ...
0
votes
1answer
112 views

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 int[] Vector = new int[]{ 1, 2, 3, 4, 5 }; // You can still changes values ...
-3
votes
4answers
179 views

Is there a better way to write a C# function that accepts multiple types?

Some context: I'd like to write a class where the main method for adding things to a collection is through a method (or methods) that are named Add (or something like that). And so the signature that ...
-3
votes
3answers
57 views

City instead of id seems on dropdownlist value

I have a problem when load dropdownlist, city instead of id seems on dropdownlist value. What is the problem? #region CITIES public List<ListItem> loadCities() { using (SqlConnection conn = ...