Tagged Questions

2
votes
2answers
167 views

c# - How to deserialize a generic list<T> when I don’t know the type of (T)?

Hi, for auditory reasons I stores the arguments of the business methods serialized into the database using the binaryformatter. The problem is that when an argument is a generic list I don't find …
3
votes
3answers
98 views

C# Beginner: Where has my IList.Where() method gone?

Hi guys I've got another simple one (I think) that's stumping me. I have written a method in one of my controls that gets the latest version of a file in a CMS given it's filename (i.e. regardless of …
1
vote
6answers
121 views

Is it common (or encouraged) practice to overload a function to accept IEnumerable<T>, ICollection<T>, IList<T>, etc.?

EDIT: From the answers given, it's been made rather clear to me how the design I'm asking about below should actually be implemented. With those suggestions in mind (and in response to a comment …
1
vote
1answer
74 views

generic list question

I have my objects like this. public class BaseTable { public int ID { get; set; } public int ParentID { get; set; } public string Description { get; set; } …
4
votes
1answer
141 views

Is there a limit of elements that could be stored in a List ?

Is there a limit of elements that could be stored in a List ? or you can just keeping adding elements untill you are out of memory ?
1
vote
5answers
91 views

Return multiple ilists from a dal function in asp.net vb.net

I modified a function that returns a strongly typed Ilist of products (from a web search form) from a stored procedure. Because of the complexity of the stored procedure I have changed it to return …
1
vote
3answers
118 views

Which Json deserializer renders IList<T> collections?

I'm trying to deserialize json to an object model where the collections are represented as IList<T> types. The actual deserializing is here: JavaScriptSerializer serializer = new …
1
vote
4answers
196 views

LINQ: help with “contains” and a Lambda query

Hi there, I have a list which contains enums, its a standard Enum but has an attribute attached to it and an extension method which returns a CHAR of the enum (see below - GetCharValue), the …
1
vote
6answers
244 views

Convert a IList<int> collection to a comma seperated list

Any elegant ways of converting a IList collection to a string of comman seperated id's? "1,234,2,324,324,2"
1
vote
5answers
96 views

Using a IList, how to populate it via a comman seperated list of ID’s

I have a property IList CategoryIDs, and a private string variable that contains a comman seperated list, how to elegantly populate the IList collection? I asked earler and I learn a neat way of …
1
vote
2answers
54 views

DataGridView filtering

I'm creating a control that should be able to take any kind of list. Essentially the following code: void BindData(IList list) { BindingSource bs = new BindindSource(); bs.DataSource = list; …
1
vote
1answer
114 views

Why do ListBox.ObjectCollection and ListView.ListViewItemCollection have AddRange but not InsertRange or RemoveRange?

So, both ListBox.ObjectCollection and ListView.ListViewItemCollection implement the IList class, which provides Add and Remove methods but no AddRange, InsertRange, or RemoveRange. However, …
0
votes
3answers
114 views

Anyway to make a IList.Contains() act more like a wildcard contains?

Hi there, I am trying to parse thru a csv string, put the results into a IList collection and then trying to find a way to do a wildcard 'contains' based on what was passed in. Right now I have the …
1
vote
5answers
172 views

Enumeration of .Net IList

I'd like to know if I can assume that the IEnumerator I get from an IList (by calling the GetEnumerator method from the IEnumerable interface) will give me the items in the order of the list. What do …
0
votes
2answers
256 views

Checking of List equality in C# .Net not working when using Nhibernate

I seem to be having a problem with checking for list equality. In my case, I have two role objects and I want to see if they are equal. Each role contains a name and a List of permissions. Each …

1 2 3 next
15 30 50 per page