The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
21 views

Using Linq to check if generic list in Dictionary contains a value

How do I check if a dictionary already contains a set of coordinates? I am using SelectManager and Where but the count is still wrong. I don't think its checked the values in the the generic list. ...
-1
votes
4answers
48 views

How to create a generic list in each element of a foreach loop

I am getting a parse error for using the variable i becuase it would change the meaning of i. How do I create generic lists for each int[]c in matchTile. int i = 0; foreach(int[] c in matchTile){ ...
0
votes
1answer
49 views

How to check if dictionary contains a value in a generic list

I have a list of coordinates that are stored in a generic list. I want to be able to iterate through the list and check if any coordinates are adjacent to each other. If they are, then I know its ...
0
votes
4answers
86 views

How to use LINQ to select and transform a subset of a List<T>

I have a list List<UserRoles> roles that has this structure {r:1,u:1,v:3}, {r:1,u:1,v:5}, {r:2,u:1,v:9}, {r:3,u:2,v:10} I am trying to write a LINQ statement that will filter out only the ...
0
votes
2answers
52 views

How to skip one (maybe more) columns of data in a list in linq

I'm reading input from two excel worksheets (using Linq-To-Excel) into two lists. One of the worksheets has an unwanted column of data (column name is known). The other columns in both worksheets ...
1
vote
1answer
59 views

Return generic list

I want to load a generic list. Therefore I want to use a function like : public static <T> List<T> load() { FileInputStream fileStream = null; List<T> toReturn = new ...
0
votes
2answers
37 views

How to access properties of an object in a list?

I am trying to take properties from a list of types and put them in another list. I am not exactly sure how you iterate through the list of objects to gain access to the properties. For example: ...
0
votes
1answer
70 views

Bind items in generic list and Serialize

This is my code: List<Test> list = new List<Test>(); for (int j = 0; j < dss.Tables[0].Rows.Count; j++) { list.Add(new Test(dss.Tables[0].Rows[j]["PSet"].ToString(), ...
2
votes
2answers
41 views

Get greatest and greater objects from Generic List

I have a list of System.Version objects, I need to get the greatest version in the list and the versions greater than the specified one Dim versions As New List(Of Version) versions = LoadVersions() ...
11
votes
2answers
130 views

Loop implementation of List.Contains() appears faster than the built-in one. Is it? If so, why?

(This question arises from a discussion that started here) I was comparing the timings for looking for a true value in a List<bool> using List.Contains() with those for a hand-rolled loop. I ...
0
votes
1answer
50 views

VB.NET Add row data to public class / public field of type List(Of T) Object reference not set to an instance of an object

I am trying to add rows to a public class that has public fields and am getting an error: Object reference not set to an instance of an object Public Class EmailRecipient EmailAddress As ...
1
vote
4answers
73 views

Convert LINQ query to List

Here is function, that I use the list of permutations: public static IEnumerable<IEnumerable<T>> Permute<T>(IEnumerable<T> list) { if (list.Count() == 1) ...
0
votes
1answer
71 views

Singly linked list - Cannot make a static reference to the non-static type

I am working a singly linked list to learn Java. I have a working linked list but it binds to integer type, now I am trying to implement a generic typed linked list by changing all the integer ...
2
votes
1answer
49 views

Calculate changeset for object

I'm writing a windows store app that receives an object (custom type that I created) from a server, lets the user edit the object and then submits a "changeset" back to the server. This changeset is ...
17
votes
1answer
219 views

How to free a generic TList<T>?

Does freeing generic lists like TList<string>, TList<Double>, TList<Integer> or TList<TMyRecord>, where TMyRecord is declared like: type TMyRecord = record MyString: ...
0
votes
1answer
214 views

Remove selected item from generic list via a button and listbox

How can you remove from a generic list via a button with the selected item in a listbox? This is what I have so far in my button click method: if (listBox2.SelectedItem != null) { ...
-4
votes
2answers
32 views

How to instantiate a generic list out of an unkown type? [duplicate]

I have an object as a parameter and I want to make a generic list out of that object type. Most of times I want to send a custom object type. This code declares the concept of my problem. public void ...
4
votes
4answers
87 views

List<T> using inside a class

I found a code sample about using List inside a class.There are codes what i don't understand.Name and Description fields have value inside List defination but Album field have not a value.( new ...
1
vote
1answer
167 views

Nhibernate mapping a class which has a generic list property

I am new to Nhibernate and I am trying to map a class (Invoice) which has a generic list property using Nhibernate but I keep getting error: "An association from the table InvoiceDetails refers to an ...
3
votes
3answers
74 views

list item to database

i have a list List<SalesDetail> SalesList = new List<SalesDetail>(); SalesDetail detail = new SalesDetail(); where "SalesDetail" is a class. i have a button (add) and my code on ...
0
votes
1answer
49 views

Issue with ModelBinding a List<int> correctly on RedirectToAction()

I have a form with a plain vanilla multi-select listbox that I use for filtering. So, by standard design, I do the filter as a GET operation. So the form submit results in a perfectly acceptable URL: ...
0
votes
2answers
168 views

How Do I Iterate Generic List Using For Each Type For Loop

I have been given an assignment to create a list of lists where I should be able to iterate through the lists using the 'for each' type of 'for' loop, versus building a constructor for Iterator. The ...
1
vote
1answer
315 views

Convert an enum to List<string>

How do I convert the following Enum to a List of strings? [Flags] public enum DataSourceTypes { None = 0, Grid = 1, ExcelFile = 2, ODBC = 4 }; I couldn't find this exact question, ...
0
votes
2answers
76 views

NullPointerException in Generic List

I've been scouring the 1000's of NullPointerException posts on stackoverflow and cannot for the life of me figure why this is happening; aside from the obvious (that it is null). Can someone help me ...
3
votes
2answers
174 views

generic list class in c#

I'm currently making my own very basic generic list class (to get a better understanding on how the predefined ones work). Only problem I have is that I can't reach the elements inside the array as ...
1
vote
3answers
117 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
1answer
512 views

How to display data from Textbox to a Gridview using Generic List (Typed List)?

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
3answers
62 views

How to find Name of class<?> used in list

I have one Struts2 Action class there is getters/setters of java.util.List list; but I don't know about its generic type List<?> list; i have code here : public class Test { private ...
1
vote
2answers
1k 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
3answers
144 views

Adding Elements of generic list to dictionary

I have a generic list List<String, String> ListName I am trying to insert the values of the list, into a dictionary Dictionary<String, int> I looked at places but only found adding ...
0
votes
3answers
70 views

Issue with Sorting a list<xyz<String, String>>, Error: InvalidOperationException

I am trying to sort a generic list, and am getting a InvalidOperationException error Does anyone has suggestions on how to rectify it? List<XYZ<String, String>> list is being passed on ...
0
votes
3answers
66 views

Remove semicolons from list items

I have a list that contans various string records. Some of the records consists of various sub-records that are seperated by semicolons. For example as follows Life Skills No Related Topics ...
0
votes
1answer
32 views

Exclusing Items to be added to a List

I query a two tables from a database and add unique values to a generic list. If there is a value that I do not want to add to the list, how can I prevent the item from being added? using ...
0
votes
1answer
63 views

Create list of subclass elements in java generics

i saw that those reflection problems are discussed a lot here. Unfotunately i couldnt find any solution for my problem: I have one abstract class which handles a lot of stuff for the sublcasses ...
0
votes
1answer
61 views

Managed C++ - general compile errors

I have these three.h files that are giving me so many mind-boggling errors, that there must be some fundamental issue that I'm overlooking. My objective is to create an efficient linked list. I ...
1
vote
1answer
31 views

Extract List of Object property from object list

If I have a list of student object var List<Student> = new List<Student>(); and this is the Student object data (ID,Name) How can I extract list of Student IDs only using Linq To ...
0
votes
1answer
35 views

TakeWhile Extension method on generic list

I was trying to figure out how to write the proper TakeWhile syntax using lambda in the snippet below, so i can get this filtering to work and return the filtered Dictionary. Can anyone here help? ...
1
vote
4answers
100 views

Sorting a list to be assigned to Combobox

I have a list of string lets say List<string> mia = new list<string>; and i am adding data to it from a database using (SqlCommand command = new SqlCommand("SELECT xyz FROM ...
0
votes
3answers
301 views

VB.net adding items to List(of T) issue

I'm loading a list with 7 objects, but the objects get "overwritten" with the last object that is added. There are 7 objects that get created (Exec, Mgr, Position...etc) the 1st one "Exec" is added to ...
0
votes
1answer
76 views

Get only certain property from generic list of custom class using lambda expressions

Assume class Person { string FirstName; string LastName; int Age; } and a list List<Person> listPerson; Possible ways to get a list of only first names of all the person in this list
1
vote
2answers
150 views

C# Generic List.Any() throws System.NullReferenceException

Consider the following partial view code snippet List<sellingPrice> Prices = ViewBag.Prices; foreach (var mgmp in mg.messageGroup.messageGroupMessagePLUs) { if (Prices.Any(x => x.pluId ...
1
vote
1answer
230 views

Bind Directory.EnumerateFiles to a Repeater using a Generic List

I am trying to create a small web app, that when I type in a game name, it will search through a folder with a whole lot of icons to find one similar to the typed in game. I then want to show a ...
0
votes
1answer
112 views

Moving single member of an Object in List into an array for usew in a calculation

I have a List of objects(Appliance as String and KwHHr as Double), applianceListReturn , in Visual Basic 2010. Each object has two members. I would like to take one member(KwHHr) of the same type from ...
1
vote
2answers
127 views

How to check for common objects between 2 generic lists

I have 2 lists that I need to check for common objects that are being passed to a generic wrapper. The first list (selList) is a typed entity list. The ID field in this list is different, based on ...
0
votes
1answer
25 views

What does “A list is any collection that implements the IList interface or its generic counterpart” mean?

I'm reading a book on XAML. And I can't figure out what "its generic counterpart" mean in the following context. The term 'generic' always sounds confusing to me when it comes to learning computer ...
2
votes
7answers
147 views

Can't figure out this formula in c#

Sorry, I am new to coding and I can't figure this out after trying everything! I have 6 masked text boxes which the user inputs decibel values, is supposed to save them to a list, input each into a ...
0
votes
2answers
444 views

Array instead of List in WCF Service Proxy Generated using svcutil.exe

I have a ServiceContract, using System.Collections.Generic; using System.ServiceModel; namespace MainModule.Sub.Communication { [ServiceContract] public interface IWebMethod { ...
-4
votes
2answers
98 views

C# performance for integer variables [closed]

I know already that it is recommended to use int variables in for loop Just curios about performance it is recommended to use other integral types other than int C# and when ? The real purpose of ...
1
vote
1answer
81 views

Asynchronous HTTP requests throws IndexOutOfRange Exception in Generic List

I'm working on a Windows Service that cycles through a series of databases and then sends SMS messages using HTTP requests. In the beginning of the method that goes through each database, I define a ...
6
votes
2answers
137 views

How is generic list manipulation function written?

I am a beginner in programming, please go easy on me and I am finding difficult to get the answer for my question. I can't get my head around the complex codes. Can some one please explain me with ...

1 2 3 4 5 7