3
votes
10answers
181 views
C# associative array
I've been using a Hashtable, but by nature, hashtables are not ordered, and I need to keep everything in order as I add them (because I want to pull them out in the same order). Forexample if I do:
…
2
votes
4answers
72 views
C# — Need an IDictionary implementation that will allow a null key
Basically, I want something like this:
Dictionary<object, string> dict = new Dictionary<object, string>();
dict.Add(null, "Nothing");
dict.Add(1, "One");
Are there any built into the …
0
votes
2answers
33 views
Hibernate collection handling basics
Hi all,
I"m new to Hibernate. I have 3 tables: Companies, Profiles and Sites. The relation is - one company has many Profiles and Sites (one-to-many).
<hibernate-mapping>
<class …
0
votes
1answer
26 views
How can I access my applications images that are in my resources?
I'm going to briefly explain what I want my program to do.
I have a lot of Images on my form and I want the image source to change on MouseEnter event.
So, if a user moves the mouse over the button, …
0
votes
5answers
46 views
How to get the type contained in a collection through reflection
In some part of my code I am passed a collection of objects of type T. I don't know which concrete colletion I will be passed, other than it impements IEnumerable.
At run time, I need to find out …
2
votes
3answers
45 views
Handling collection properties in a class and NHibernate entities
I was wondering what is the recommended way to expose a collection within a class and if it is any different from the way of doing that same thing when working with NHibernate entities.
Let me …
0
votes
1answer
37 views
Custom Collection extends List<T> Add method
I want to create a custom collection and add my own custom Add method.
Scenario:
Teacher.Students.Add(Student s)
I want to put LINQ methods to save the teacher/student relationship to the database, …
0
votes
4answers
69 views
Getting the same element without changing it using Linq
I have a method like this:
public List<Fruit> Traverse (IEnumerable<Fruit> collection, Action<Fruit> action)
I can do this:
Traverse (array, f => f.Text);
How can I call the …
0
votes
0answers
11 views
Utilities to find Gen1, Gen 2 objects promoted in BizTalk Orchestration?
Hi
I am trying to profile a memory guzzling biztalk orchestration. This orchestration is using plenty of maps with a few custom script functoids.
I wish to identify the lifetime of the custom objects …
5
votes
1answer
155 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
4answers
114 views
How can I create a java list using the member variables of an existing list, without using a for loop?
I have a java list
List<myclass> myList = myClass.selectFromDB("where clause");
//myClass.selectFromDB returns a list of objects from DB
But I want a different list, specifically.
…
0
votes
4answers
125 views
Java ArrayList not allowing me to add from outside constructor
public class Start {
public Register theReg = new Register();
public static Start go = new Start();
public static void main(String[] args) {
Register theReg = new Register();
…
4
votes
9answers
211 views
If you aren’t supposed to return collections to callers, how should you return a collection of data to a caller?
I am writing a method that's intended to return a dictionary filled with configuration keys and values. The method that's building up this dictionary is doing so dynamically, so I need to return this …
0
votes
1answer
87 views
ASP.NET MVC: How to maintain TextBox State when your ViewModel is a Collection/List/IEnumerable
I am using ASP.NET MVC 2 Beta. I can create a wizard like workflow using Steven Sanderson's technique (in his book Pro ASP.NET MVC Framework) except using Session instead of hidden form fields to …
10
votes
17answers
3k views
Most efficient way to increment a Map value in Java
I hope this question is not considered too basic for this forum, but we'll see. I'm wondering how to refactor some code for better performance that is getting run a bunch of times.
Say I'm creating a …
