Tagged Questions

1
vote
3answers
48 views

Linq type conversion problem.

Why is this thing giving the message in the second line (i.e. list convertion)? IEnumerable<Order> MyQuery = from order in dataContext.GetTable<Order>() where …
0
votes
4answers
132 views

C# List<T> OrderBy always returning null…

Here's my setup. public class ItemList : List<Item> { public void Load() {...} public void Save() {...} } Load reads from an XML file to populate the ItemList I then attempt to order the …
1
vote
3answers
139 views

Contains() method of List<T>

Precisely which methods in a Class are responsible for the List<T>'s Contains() to operate? I have overloaded == in my class. But it seems to have no effect.
2
votes
3answers
1k views

Export a C# List of Lists to Excel

Using C#, is there a direct way to export a List of Lists (i.e., List<List<T>>) to Excel 2003? I am parsing out large text files and exporting to Excel. Writing one cell at a time creates …
0
votes
2answers
124 views

List<T> and GridView binding

Here are a few properties of my class. There is also a public object of another class DNRole private Int32 _IDMarketingCampaign; private String _Name; public Int32 IDMarketingCampaign …
3
votes
3answers
646 views

XML Serialization of List<T> - XML Root

First question on Stackoverflow (.Net 2.0): So I am trying to return an XML of a List with the following: public XmlDocument GetEntityXml() { StringWriter stringWriter = new …
1
vote
3answers
497 views

Merge and Update Two Lists in C#

I have two List<T> objects: For example: List 1: ID, Value where Id is populated and value is blank and it contains say IDs from 1 to 10. 1,"" 2,"" ... 10,"" List 2: ID, Value and other …
6
votes
3answers
1k views

C# generic list <T> how to get the type of T?

Hello, I’m working on a reflection project, and now I’m stuck. If I have an object of “myclass” that can hold a List does anyone know how to get the type as in the code below if the property …
0
votes
5answers
152 views

Class properties concerning List<T> requests – Class design dilema!

When I need to grab more than one record from table(database), my method populates List of particular class (all of my data access layer methods use List for set based select statements. I Don't use …
2
votes
8answers
836 views

C# - Determine if List<T> is dirty?

I am serializing Lists of classes which are my data entities. I have a DataProvider that contains a List. I always modify items directly within the collection. What is the best way of determining …
3
votes
6answers
1k views

C# using LINQ to remove objects within a List<T>

I have LINQ query such as: var authors = from x in authorsList where x.firstname == "Bob" select x; Given that authorsList is of type List, how can I delete any Author …
1
vote
6answers
248 views

List<T> Casting algorithms and performance considerations.

I have the following code class Program { static void Main(string[] args) { List<A> aList = new List<A>(); var aObj = new A(); …
5
votes
3answers
320 views

How to add item to the beginning of List<T>?

I want to add a "Select One" option to a drop down list bound to a List<T>. Once I query for the List<T>, how do I add my initial Item, not part of the data source, as the FIRST element …