1
vote
2answers
48 views

C# Sorting Generic Lists with CompareTo

I am trying to figure out the correct way to sort a generic list of objects. A quick example of my data structure: // The base class public abstract class Item : IComparable<Item> { public ...
0
votes
0answers
51 views

List<T>.class? [duplicate]

I have the following question : If I use in my program String.class, it works If I use List.class it works But if I use List<String>.class it cannot compile Could you help me to understand why ...
0
votes
1answer
27 views

Why list show strange behaviour?

Work on Vs2010 EF,C#. Have two list(oLisTranItem,oListTaxItem) ,need to copy one list properties values in another list ,then I need to work on new list.Problem is after copy content element one ...
1
vote
1answer
69 views

C# Parameter of IList<IList<(ClassType)>>

I can't seem to figure out why the following doesn't work. From reading around it seems it must be somehow related to something like this. public class Test<T> { public void ...
3
votes
5answers
112 views

How to copy a List<> to another List<> with Comparsion in c#

I an having Two Lists. I want to get the matched and unmatched values based on ID and add the results to another List. I can get both of these using Intersect/Except. But I can get only ID in the ...
5
votes
1answer
80 views

Creating and using a custom List<T> in C#

I am trying to use a customized List were I have added a few additional tools. I want to apply this list to a long list of customized classes that I have created. All of the classes have an ID number ...
0
votes
6answers
95 views

I want to pass a parameter into the constructor of a list of certain classes

I'd like to somehow pass a parameter into a list when I'm instantiating a new list of certain classes. More specifically, I'd like to do something like the following: ...
2
votes
3answers
117 views

How could I declare list of generics with different and unknown types and How could I initialize a generic with a type only known at runtime?

This is a 2 part question. Firstly I have a class called ComponentList that looks like this: public class ComponentList<T> : List<T> where T : Component { } Now I want to create an ...
1
vote
1answer
98 views

Casting of generic T to List<T>

I'm a bit confused with code below. The problem is that a code looks about List < T > has same type as T. Considering method makeList receiving parameter of type DTOInt< T> and returns List< ...
0
votes
3answers
109 views

Populating array in C# reults in “Object reference not set to an instance of an object.”

I want to make some dummy data to use in my asp.net mvc 3 view. The following code is part of the controller that should pass the data to the view. List<KeyValuePair<int, int>> dummyData ...
1
vote
2answers
143 views

Generic Linked List of Objects (Java)

I'm pretty new to Java, with this being my second class (in College) using it. Towards the beginning of the semester, I made a simple class representing Zombies that holds their age, type, and name. ...
0
votes
1answer
41 views

Is it possible acess request data into a django generic list view?

I need to have access to some request data (username) into a template used in a generic list view. I serched django documentation but this subject is not so clear (to me) at a first glance. My ...
0
votes
1answer
41 views

How to pass a generic List to a WPF window

I try to Print a List of objects to Crystal Report. So I created a WPF Window as follows : using System; using System.Collections.Generic; using System.Linq; using System.Text; using ...
1
vote
1answer
45 views

Debug Stops When trying to Expand Items in List<T>

For some reason, when I try to expand each item in the _nodeDependencies list which is an IEnumerable<Node<T>>, it shows there are 13 items but when I start expanding them it says it can't ...
0
votes
4answers
67 views

Maintain list data when appending C#

I just notice a problem with a function I wrote, I realized the problem but the 'fix' only worsen the situation. The function connects to my db and makes select query, then it returns any rows as a ...
0
votes
5answers
203 views

Consuming web service in C# -List

score#UPDATED# This probably sounds pretty dumb but I've been stuck on this problem for three days now! I am new to C#. I am trying to consume a web service in C#. I managed to consume the web ...
6
votes
1answer
113 views

Can use IList but not List in generic method

I'm trying to create a method which returns a list of whichever type the user wants. To do this I'm using generics, which I'm not too familiar with so this question may be obvious. The problem is that ...
0
votes
4answers
50 views

In C# what the best generic to use for many insert and delete?

I have a game loop which draws a list of objects, the list called "mylist" and holds something like 1000 objects, objects(especially bullets which fly fast and hit things) needs to be added and ...
4
votes
2answers
83 views

Unable to fill the datagridview using Generics list

I don't understand what the problem is with the following simple code. All it does is take a list and display it in the datagridview. This is the error I get : Error 1 Inconsistent ...
5
votes
5answers
312 views

Java List <T> T[] toArray(T[] a) implementation

I was just looking at the method defined in the List interface: <T> T[] toArray(T[] a) , and I have a question. Why is it generic? Because of that fact, method is not complete type-safe. The ...
2
votes
1answer
120 views

create List of Type using Type variable at runtime [duplicate]

I'm trying to simplify my methods in creating several variables in a function which is repeated for different types and different actions, eventually I will migrate to a single function that can ...
2
votes
2answers
128 views

Can we create List<user defined datatype> at runtime?

Yes, i want to create a List<T> and my T is user defined data type i.e. POCO Class e.g. UserProfile. Why : i am using MvcJqGrid and i want to write a generic code for creating the Json data so ...
1
vote
1answer
71 views

Instantiating a generic class within a method body of that class

I'm trying to instantiate a generic class within a method of that class, but am having compile-time errors. Hopefully someone can provide some insight here: //returns a new ILo<T> with all ...
0
votes
3answers
37 views

Speeding up list.contains

We have a C# library class which inherirts from List but is slow because List.Contains is slow. We can't change the class to inherit from something else like Dictionary or HashSet because a lot of ...
0
votes
1answer
84 views

SQLite creating insert statement with generics (Java + SQLite4Java)

I am trying to make an insert command using java generics. Basically, I want to make my addrow() function type safe and usable for different tables. Is it possible? Here is my current java code: ...
0
votes
2answers
66 views

Casting the return from a java reflection method invocation

I am trying to write a generic method that will hash a list of objects based on calling a method through reflection. The idea is that the caller can specify which method will generate the keys for ...
1
vote
2answers
120 views

Unchecked Cast Warning with Comparable Interface and Generic List

I'm getting an unchecked cast warning when I use a Comparable interface with a generic or parametized List. I'm able to do the comparison using an ObjectList but not with a generic list. Here's my ...
1
vote
6answers
98 views

difference between List and List<?>

I've read alot about this, and I know that: List<Object> listOfObject = new ArrayList<TYPE>(); // (0) //can only work for TYPE == Object. //if TYPE extends Object (and thus objects of ...
2
votes
1answer
75 views

How to pass various derived classes of the same interface within a generic List as a parameter to the function?

How to pass a List with different inherited classes to the function takes the parent interface List? The compiler generates an error. public interface ControlPoint { } public ...
1
vote
1answer
36 views

Persist one record at a time compared to the whole list at once

I have to choose between 2 approaches. Persist my list in the data base using MyList.Foreach(p => DoIt(p)); -or- Use something like DoIt(MyList); DoIt is a DAL method in my separate layer. ...
-3
votes
2answers
106 views

.Net 2.0 Searching for member Object in a generic list

I am using.Net 2.0 I have a generic List< MyContainerObject > MyList; and MyContainerClass MyContainerObject = new MyContainerClass(); and Public Class MyContainerClass { public ...
0
votes
1answer
204 views

Checking if Object is instance of List<Object>

I have an Object that sometimes contains a List<Object>. I want to check it with instanceof, and if it is, then add some elements to it. void add(Object toAdd) { Object obj = getValue(); ...
1
vote
2answers
110 views

Add an anonymous class of object to an anonymous list

I've declare a anonymous list like this, and it contain list of contact also var ContactGroup = new[] { new { ContactGroupKey = 0, ContactGroupTLK = 0, Desc = "", Contacts=new List<object>() ...
1
vote
4answers
103 views

How to initialize a list of a generic class

I have a generic class public class MetadataDifference<T> { public T NewMetadata { get; private set; } public T OldMetadata { get; private set; } // Other useful properties ...
1
vote
2answers
49 views

I'm getting the error: petition of a member in something that it's not an structure or an enum in C

Basically what i'm trying to do is to make a generic list in wich i could put any data type inside the node by using a void* to it. This is the generic list and the structure i want to put inside of ...
1
vote
2answers
70 views

Setting a dictionary key as an object type

Is it ok to set the key of a dictionary to a reference type? Does the dictionary store the references of those objects or does it store the object instances? I have a dictionary and I am storing if ...
0
votes
3answers
82 views

Using and declaring generic List<T>

So I'm working in Java and I want to declare a generic List. So what I'm doing so far is List<T> list = new ArrayList<T>(); But now I want to add in an element. How do I do that? What ...
1
vote
1answer
135 views

C Generic ADT with function pointers

I'm writing a generic list adt and this is what I have in the header so far. From what I know this is usually how it's done. typedef struct _node { void *data; struct _node *next; } Node; ...
0
votes
1answer
71 views

CircularList in ActionScript 3

I have been working on an AS3 project for some while and I think that I've hit a wall. My project requires a series of elements to be arranged in a Circular List, so I copied myself in a Circular List ...
0
votes
3answers
81 views

Arithmetic element by element difference between 2 collections using Java Generics

Say we got 2 ordered collections of numbers. We want to compute the arithmetic difference element by element. I think we need to use List of Number in order to model the idea of 'ordered collection of ...
0
votes
2answers
103 views

Reading multiply embedded variables from generic classes in Java

Essentially I have the task of writing two methods: a zip method that turns a generic tuple containing two lists of generic objections into a list of tuples made up of elements of the aforementioned ...
1
vote
4answers
348 views

Sort one List<> based on another

Say I have List<int> ages = new List<int>() { 8, 5, 3, 9, 2, 1, 7 }; List<int> marks = new List<int>() { 12, 17, 08, 15, 19, 02, 11 }; I can sort my marks by ages like ...
0
votes
4answers
881 views

Why warning: ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized [duplicate]

Possible Duplicate: ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized In order to save an ArrayList with payments done by one member I want to ...
1
vote
1answer
117 views

Generic list match any value

I'm sure someone has answered this but I'm having trouble finding the correct search terms to locate it... I can definitely do this by looping through all the values but I'm just checking to see if ...
2
votes
2answers
79 views

How to cast a list of specific type to a list of generic type in c#

I have the list which i would like to map to List. However, there is no compiler error, but at runtime result is coming as null. Getting a generic List<T> will help me make my code generic and ...
1
vote
6answers
659 views

Binded DataGridView to List<T> not showing data

This is the code I have (it a very simple example): public partial class Form1 : Form { List<Person> listPersons; public Form1() { InitializeComponent(); listPersons ...
0
votes
0answers
77 views

ComponentOne.TrueDBGrid binding

1 I am using ComponentOne.TrueDBGrid; 2 I am using UserList as the datasource; 3 I need filterbar and sortings for this grid ; some important code like below: public class User{ public int ...
0
votes
1answer
96 views

MVC3 Linq query adding to list

I'm trying to build a list of software names from db.tblSoftwares by using a query. I've tried to use .Add method and it will not work. Any suggestions would be appreciated. public ActionResult ...
2
votes
1answer
256 views

Define a Generic List property in a static class

I need to use a static class to hold some simple values during runtime: public static class Globals { public static string UserName { get; set; } ...more properties } I now have need ...
0
votes
2answers
107 views

Create List or Cast by List from Class name

I have generic class, and I want to create a List or cast by List. I only have the class type. What I want to get is: public class CustomerDao extends BaseDao<Customer> implements ICustomerDao ...

1 2 3 4 5 8