Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
2answers
9k views

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

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 myclass.SomList ...
13
votes
3answers
4k 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 ...
5
votes
4answers
16k 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 ...
4
votes
2answers
165 views

How to get backtracking and IO using ListT?

I don't know really how exactly should the List transformer ListT be used. For example how should this simple task be done: backtrack :: ListT IO () backtrack = do x <- lift getLine a ...
4
votes
5answers
11k 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 ...
3
votes
6answers
296 views

Get an element from List<T> based on ID

This question is related to this question: Given System.Type T, Deserialize List Given this function to retrieve a list of all elements... public static List<T> GetAllItems<T>() { ...
3
votes
4answers
616 views

C# List<T>.BinarySearch return value when value not found

I am confused about the BinarySearch method of List in case when the item does not exist. I've got List<long> theList = {1, 3, 5, ...}. theList.BInarySearch(0) returns 0, and ...
2
votes
5answers
78 views

Saving from List<T> to txt

I want my program to read from two text files into one List<T>. The List<T> is sorting and cleaning duplicates. I want the List<T> to save (after sorting and cleaning) to a txt ...
2
votes
1answer
101 views

Using List<T> causes second Page Load in ASP.Net

I have a fairly simple web application that gets a list of items from a database (in a DataTable), and binds a view of that DataTable to a Repeater. When converting my DataTable to a List (which is ...
2
votes
1answer
2k views

C# List<T> lambda Find then Modify elemnts question

How would I go about doing this with a List using lambda List<Foo> list....// create and add a bunch of Foo int seconds = 100; list.FindAll(x=>(x.Seconds == 0).Seconds = seconds) // yes I ...
2
votes
2answers
8k 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 ...
2
votes
7answers
4k 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 ...
1
vote
2answers
198 views

Silverlight : alternatives for sending a List<T> as an argument for a WCF RIA DomainService method

I want to create a DomainService method that receives a List (where T: Entity) kind of an argument, but it seems this cannot be done in Silverlight (Error message : "operation ... does not conform to ...
1
vote
0answers
246 views

consume wcf web service with List<T> parameter by ksoap2

there is wcf web service, EnforceType is an enum type: [OperationContract] string TestList(List<EnforceType> enforceType); how to consume this wcf web service by ksoap2? Thanks for any help. ...
1
vote
1answer
192 views

Decorator Pattern on List<T> for DataGridView

I would like to apply a Decorator on List class and be able to bind it to the WinForms DataGridView. I would like to know what members of List I need to implement for this new class to be able to ...
1
vote
2answers
980 views

Search in BindingList<T> with Linq

Why is this warning? BindingList<ClassName> lst = List.Select(obj => obj.Number == "NN").ToList<ClassName>(); ................................................. List: ...
1
vote
2answers
558 views

MVVM/WPF: Using a ObservableCollection<T> as a list in a domain model, is that good/bad?

I have aggregated models like Customer:Order:Product. As my View is bound to the BillingViewModel which has a Property Customers of type ObservableCollection and ONE customer in this collection has ...
1
vote
1answer
243 views

Cannot Add to generic list

Firstly I apologise for the oversimplification, but I have this issue which is driving me crazy. It should work - it's simple code, nothing fancy....... I have this object public class Stuff { ...
1
vote
3answers
434 views

DataTable to List<T> conversion

Is there any better way than the following? Particularly, I want to replace Activator with something else. public static List<T> ToList<T>(DataTable dt) { Type type = ...
1
vote
3answers
551 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 ...
1
vote
4answers
806 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
525 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.
1
vote
6answers
446 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(); ...
0
votes
1answer
151 views

How do I get my data to show in correct DataGridView column?

I am trying to populate my DataGridView with custom columns imported from Excel. This should be easy but for the life of me, I am stuck in a brainlock. I should be able to select the specific ...
0
votes
1answer
2k views

serialize/deserialize List<T> to JSON

I want to be able to serialize/deserialize a generic list what I so far is this public static string ToJson(this object obj, int recursionDepth = 100) { JavaScriptSerializer ...
0
votes
5answers
284 views

Example to use a hashcode to detect if an element of a List<string> has changed C#

I have a List that updates every minute based on a Linq query of some XML elements. the xml changes, from time to time. It was suggested to me that I could use Hashcode to determine if any of the ...
0
votes
3answers
508 views

Entity Framework 4 - List<T> Order By based on T's children's property

I have the following code - public void LoadAllContacts() { var db = new ContextDB(); var contacts = db.LocalContacts.ToList(); grdItems.DataSource = ...
0
votes
2answers
138 views

Use a parameter System.Type T in List<T>

Suppose I have a function: public static IList GetAllItems(System.Type T) { XmlSerializer deSerializer = new XmlSerializer(T); TextReader tr = new StreamReader(GetPathBasedOnType(T)); ...
0
votes
1answer
204 views

Given System.Type T, Deserialize List<T>

I have a number of classes that I want to serialize and de-serialize. I am trying to create a function that, given a type ("User", "Administrator", "Article", etc) will de-serialize the file with the ...
0
votes
3answers
1k views

Generic List<T> as IEnumerable<object>

I'm trying to do cast a List to an IEnumerable, so I can verify that different lists are not null or empty: Suppose myList is a List < T > . Then in the caller code I wanted: ...
0
votes
3answers
149 views

DataTable to List<T> conversion problem

While executing this method: public static List<T> ToList<T>(DataTable dataTable) { Type type = typeof(T); List<T> list = new List<T>(); ...
0
votes
2answers
616 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 ...
0
votes
5answers
268 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 ...
-1
votes
4answers
104 views

C# Why do I only get partial results when parsing out a CSV or TSV file?

I am trying to get the second value from a CSV file with 100 rows. I am getting the first 42 values then it stops... no error messege, or error handling at all for that matter. I am perplexed and am ...
-3
votes
1answer
192 views

Edit list<className> with linq [closed]

list<ClassName> lst = new list<ClassName>(); (key in class is _Number) code update items in lst with linq...?????