Tagged Questions
The addrange tag has no wiki summary.
15
votes
6answers
11k views
ObservableCollection Doesn't support AddRange method, so I get notified for each item added, besides what about INotifyCollectionChanging?
I want to be able to add a range and get updated for the entire bulk.
I also want to be able to cancel the action before it's done (i.e. collection changing besides the 'changed').
Related Q
...
13
votes
3answers
2k views
List<T>.AddRange implementation suboptimal
Profiling my C# application indicated that significant time is spent in List<T>.AddRange. Using Reflector to look at the code in this method indicated that it calls List<T>.InsertRange ...
3
votes
4answers
851 views
c# Linq `List<Interface>.AddRange` Method Not Working
I have an interface defined as below:
public interface TestInterface{
int id { get; set; }
}
And two Linq-to-SQL classes implementing that interface:
public class tblTestA : TestInterface{
...
1
vote
1answer
190 views
How can I set a many-to-many EntityCollection in Entity Framework efficiently?
When Entity Framework generates an ObjectContext for a two database tables (let's say Table1 and Table2) connected with a many-to-many relationship table, it doesn't create an object for the xref ...
1
vote
3answers
508 views
Adding multiple items to a combo box using AddRange
Baically I'm looking for something like this...
cbo_Genre.Items.AddRange({"Horror", "Comedy"});
1
vote
2answers
462 views
AddRange/concat functionality inside a lambda Select expression
class Foo
{
int PrimaryItem;
bool HasOtherItems;
IEnumerable<int> OtherItems;
}
List<Foo> fooList;
How do I get a list of all item ids referenced inside fooList?
var items ...
1
vote
3answers
1k views
How to use Combo Box AddRange in WPF C#
I have a little problem, I have an array and I want to add that in a Combobox, so I want to use the AddRange method, but it isn't available in WPF, is there a way that I can do it in the combobox?
...
1
vote
5answers
3k views
Can't append one list to another in C#… trying to use AddRange
Hi I'm trying to append 1 list to another. I've done it using AddRange() before but it doesn't seem to be working here... Here's the code:
IList<E> resultCollection = ((IRepository<E, ...
1
vote
1answer
2k views
using a win form combo box Items.AddRange method
I have an array of objects that I'm trying to add to the Items collection of a combo box control using the AddRange method. The method takes an object[] but when I pass it the name of the array which ...
0
votes
3answers
187 views
How to specify range >2GB for HttpWebRequest in .NET 3.5
I'm building this class to download files in parts/sections/segments. In .NET 4.0, I can use this code to specify the range to download from
long startPos = int.MaxValue+1;
...
0
votes
1answer
144 views
C# - Charting - Adding a Range to a Series
Using Microsoft's Charting control, is it possible to add a range of points at once without having to iterate through the List I want to add? I have a List and I need to add the entire list as the ...
0
votes
3answers
329 views
LINQ - Joining Lists in a linq Query
Question is How do a return a List of B with all the entities in children of all Parents without resorting to the type of code below, I was thinking u must be able to acheive the same within a single ...
0
votes
2answers
970 views
Why can't I use AddRange to add subclassed items?
I have two classes.... Parcel and FundParcel...and I'm trying to convert an IEnumerable of the subtype to an IList of the supertype....
public class FundParcel : Parcel
{
/* properties defined here ...