A collection that supports generic typing of its elements

learn more… | top users | synonyms

1
vote
3answers
59 views

check if string contains dictionary Key -> remove key and add value

I am stuck at a function which checks a string ('14534000000875e') if it contains a letter. If it contains a letter (a-z), remove the letter and add a string to the end. To realize this, I have ...
0
votes
3answers
156 views

C# readonly access to List<> or other collection, or ToArray() magic

1st question is about way of protecting my List from changing(remove/add/clear etc...) from outside there is my way: class Foo { public int[] MyCollection { get{ return ...
0
votes
1answer
49 views

Declare a List of unknown type and assign the value based on the selection

I have different types of lists, and based on the selected list, my grid needs to be populated. These list item classes are defined as follows: public class plist { public DateTime date_modified ...
0
votes
0answers
43 views

Generic UserControl (WPF)

I'm making WPF user control that would allow to edit (add, reorder, remove) items of ListBox bound to ObservableCollection<TextItem> (where TextItem is a wrapper over string type for TwoWay ...
1
vote
1answer
36 views

Cannot convert type 'string' to 'System.Collections.ArrayList

Here is my code private static ArrayList GetFirstObjectFromDictionary(Dictionary<string, string> dictionary) { foreach (ArrayList arr in dictionary.Values) //error { ...
0
votes
2answers
41 views

linq query repeated columns in a list

I have a table similar to the one below. Branch Dept Product ID Product Val Product Date Branch 1 Dept 1 ID 1 1 5/23/2013 Branch 1 Dept 1 ID 2 ...
0
votes
1answer
50 views

JUNG Exception in “main” :org/apache/commons/collections/Predicate

I am getting started with Java Universal Network/Graph Framework (JUNG). I am trying to build a basic graph using the same. I downloaded the jung 2.0.1 libraries. collections-generic-4.0.1.jar and ...
-1
votes
2answers
53 views

Move Selected elements of a Map up or down [closed]

I am trying to modify a list of elements in a Map by moving the selected items up or down. My idea is to remember the elements next to selected items. Because the elements are in a map, I find it much ...
0
votes
1answer
40 views

Using Collection sort for ArrayList

class UnfairContainer<T> implements Comparable<UnfairContainer> { private ArrayList<T> array = new ArrayList<T>(); public void sort() { ...
2
votes
3answers
126 views

Which generic collection should i choose in C# to maintain sorted “list”

I have Node class which has a float Distance property. I want a data structure that i can put inside it all my nodes and they will be stored sorted (like in AVL tree or Red Black Tree). I want to ...
0
votes
1answer
64 views

VB.NET: Get dynamically value of constants

If have got the following definitions of constants: Protected Const Xsl As String = "Configuration.Xsl" Protected Const Form As String = "Settings.Form" Protected Const Ascx As String = ...
0
votes
0answers
76 views

Extension of scala collections with composite bounded generic types

I'm rather new to Scala, and I feel like I've jumped into the Scala deep end. I need to write a couple (err, extend) of collections (one similar to ArrayBuffer and one similar to Array) that works ...
1
vote
4answers
109 views

How to define a method that can return a DataTable or List <T>?

I am trying to define a generic method that can return a list of data. I want to make it flexible to allow to return a DataTable or List<T>. e.g. *SomeGenericDataTypeInterface* ...
0
votes
1answer
169 views

Can we send a Generic List ( List<customObject>) as a parameter to a WCF OperationContract?

Can we send a Generic List ( List) as a parameter to a WCF OperationContract? Seems like the only way to do it is to encapsulate the List as a DataMember inside another Class and specify the class ...
2
votes
2answers
54 views

Is there any performance difference between compare method and compare class?

Are there any difference in performance between List<T>.Sort Method (Comparison<T>) and List<T>.Sort Method (IComparer<T>)? Does exists any structural (software ...
1
vote
2answers
83 views

Generic types : wildcards vs variables of raw types

Consider following methods: public static void listAll(LinkedList list) { for(Object obj : list) System.out.println(obj); } and public static void listAll(LinkedList<?> list) { ...
0
votes
3answers
85 views

Generate pairs with List using c#

Basically i have list of rooms from hotel, Lets say user selects 3 rooms with 1st room with 2 adults, 2nd with 4 adults 3rd with 6 adults. fine, When i send this request to XML service. it gives ...
0
votes
1answer
95 views

Return an ObservableCollection depending on enum value

My C# application defines the following enumeration: public enum ItemTypes { REQUIREMENTS, TEST_CASES } Now I would like to define an interface which gets all items matching one of the ...
2
votes
1answer
85 views

C# Linq SelectMany, returning entire object

I have a class like this: public class FileCollection:ObservableCollection<IUserFile>. From within the class, I would like to get a subset of the collection, based on a list of names. ...
-1
votes
1answer
51 views

How do I create a list for the even and odd indexes of an input file that has been made into an array list? [closed]

/*ArrayList collection for input file */ ArrayList<String> names = new ArrayList<String>(); /*get input file */ do{ locatedFile = false; try{ ...
0
votes
2answers
99 views

IQueryable<T1> extension method to convert to IQueryable<T2>

Is it possible to add an extension method to an IQueryable that converts it to another type of IQueryable? I looking for something like this; IQueryable<foo> source; IQueryable<bar> ...
1
vote
3answers
142 views

Can't change struct's members value inside generic collections

Imagine this struct : struct Person { public string FirstName { get; set; } public string LastName { get; set; } } And following code : ...
1
vote
0answers
78 views

Why there is neither Hashtable<TKey, TValue> nor ArrayList<T>? [closed]

There is the Dictionary<TKey, TValue> as generic type for Hashtable instead of Hashtable<TKey, TValue>. And there is the List<T> as generic type for ArrayList instead of ...
1
vote
2answers
2k views

How to display data from Textbox to a Gridview using Arraylist?

I have created two TextBoxes to enter the FirstName and LastName of an employee in a web-based ASP.NET application using C# on Visual studio 2010. There is a Button. when I click on it, the values ...
0
votes
2answers
69 views

How to get or set any arbitrary type of object in C#

I have a class which shall act as a "model provider". Basically this is what it shall do: The ModelProvider creates several objects, e.g. a Project and a User. The idea here is that from any part of ...
0
votes
1answer
91 views

C++ keeping a collection of pointers to template objects, all derived from a non-template class

I have a list of object "identifiers" (a long enumeration list, with a unique value per "identifier"): enum Identifier { Enum0, // an identifier for a bool value Enum1, // ... for a float ...
0
votes
3answers
151 views

How to move cursor for items in List in console C#?

I'd appreciate of someone could help to find a mistake. I printed items of my List in console and i need to move my cursor down, for each item to be highlighted, I've tried like this: foreach ...
-1
votes
1answer
110 views

Change the LinkedList class into a generic collection similar to the java.util.ArrayList class

This is a linkedList that have methods to modify the list.One of the things i have to do is :Change the LinkedList class into a generic collection similar to the java.util.ArrayList class. I dont know ...
0
votes
1answer
78 views

Define List<T> in razor page

Why when I try define List object there are inserts tag names instead 'T'?
0
votes
1answer
163 views

returning soap envelope missing values

I have a Soap WSDL, set up as a Service Reference in my application that points to the .asmx file. I am having problems with my response soap envelop. I have a collection object that when it is ...
1
vote
3answers
289 views

Creating Custom Generic List in C#

Hello Friends i wanna create custom generic list my code is as follows : public class Dates { string _FromDate; string _ToDate; public string FromDate { get { return ...
7
votes
8answers
234 views

Multi-key DataStructure

I'm looking for a data structure that I can search with multiple keys. Easier to explain with an example: var myDataStructure = new MultiKeyDataStructure<int, string, MyType>(); ...
1
vote
3answers
132 views

Java - adding functionality to all classes inheriting a specific interface

I'm sorry to say that I cannot describe my problem more to the core or more abstractly. I feel the best way to explain my problem is by means of this quite specific example. I want to define a ...
0
votes
3answers
67 views

Unable to retrieve all the key for a Map(HashMap)?

I am working on a client-server application in which server sends the indication and client receives those indication.The Map is declared as private static Map<key,value> obj=new ...
0
votes
1answer
412 views

AutoMapper UseValue, ResolveUsing or MapFrom reusing value from previous call. Is it caching or something?

I have a situation where starting from the 2nd call and subsequent ones (Ajax GET calls), AutoMapper is reusing the previous value (the value from the 1st call that comes from a click in an action ...
5
votes
1answer
133 views

Why doesn't Collections.Generic.Queue have Synchronized method but Collections.Queue has?

System.Collections.Queue class has Queue.Synchronized method which returns a thread-safe Queue implementation. But the generic one, System.Collections.Generic.Queue does not have a Synchronized ...
0
votes
3answers
101 views

Limit the size of a generic collection?

Is there any way to limit the size of a generic collection? I have a Stack of WriteableBitmap which I am using to store a clone of a WriteableBitmap on each change, meaning that I can undo easily by ...
4
votes
6answers
160 views

How to remove from List<T> efficiently (C#)?

If I understood correctly (and please correct me if i'm wrong), list is implemented by array in .NET, which means that every deletion of an item in the list will cause re-allocation of all the list ...
0
votes
3answers
47 views

How can a list with one member be useful?

I read an SO which asked for the easiest way to create a list with a one member. Quick way to turn object into singleton list? This raised a question for me, when would this be useful? I can't ...
2
votes
2answers
602 views

How to Sort a Map<String, List<Object>> by the Key with the most values (that are not numeric) assigned to it

I have been working with Maps at present and I am baffled by how I can get my program to work effectively. I can iterate over the map get the keys and values and sort them in alphabetical and reverse ...
3
votes
2answers
244 views

Case-INsensitive Dictionary with string key-type in C#

If I have a Dictionary<String,...> is it possible to make methods like ContainsKey case-insensitive? This seemed related, but I didn't understand it properly: c# Dictionary: making the Key ...
0
votes
5answers
207 views

Understanding the Set interface in Java

I've been struggling to understand the whole abstract idea behind a custom implementation of a Set interface in Java. In our lectures we've implemented functional sets and even flag sets, both of ...
1
vote
1answer
124 views

What is a custom collection?

A Group of objects. However i am having confusion in the following case. A sample class class A { public string Foo{get; set;} } class A_list { public A[] list; public A_list(A[] ...
0
votes
2answers
107 views

Unexpected behaviour decorating a collection using Guava ForwardingList

I've encountered a very nasty i would say 'side effect', but it's obviously a problem of bad design. I'm using Guava ForwardingList pattern to decorate a regular List. My purpose is to build a ...
1
vote
1answer
329 views

Casting List(of List(of MyType)) to IEnumerable(of IEnumerable(of MyType))

I have a method that accepts an argument of type IEnumerable(Of IEnumerable(Of MyType)) If I do the following: Dim list1 as new List(Of MyType) From { obj1, obj2 } Dim list2 as new List(Of MyType) ...
2
votes
3answers
362 views

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 extensions available to the Generic Collection but am only getting the non-extension ...
0
votes
2answers
98 views

How to get PropertyGrid from TabPage Collection

I created newPropertyGrid and add that to newTabPage. I save all newTabPage to lstTankTabPages(generic collections). I want to raise an event when the data changes in the property grid to change the ...
2
votes
1answer
122 views

Generic collections in vba?

Does VBA have Generic collections? I am relatively new to VBA. I see it has dictionary data structure. What are the other collections or data structures that vba have?
1
vote
2answers
401 views

Remove Multiple Elements From List<T>

I was wondering, is there an elegant way to remove multiple items from a generic collection (in my case, a List<T>) without doing something such as specifying a predicate in a LINQ query to find ...
0
votes
1answer
42 views

ASP.NET MVC View that supports adding collections of data

My application will be used for accepting/editing warranty claims. Within a warranty claim, the user can submit multiple "parts" as part of the claim. My model contains an IEnumerable<> of ...

1 2 3