7
votes
4answers
773 views
Scala collection standard practice
Coming from a Java background, I'm used to the common practice of dealing with collections: obviously there would be exceptions but usually code would look like:
public class MyCl …
1
vote
2answers
39 views
C# AppSettings: Is there a easy way to put a collection into <appSetting>
i tried
<appSettings >
<add key="List" value="1"/>
<add key="List" value="2"/>
<add key="List" value="3"/>
</appSettings >
and Sys …
1
vote
1answer
47 views
Hibernate map collection with constant key
Hi,
I'm trying to map a collection (of type map) using a foreign key and a fixed value as the key/mapping arguments.
I have several tables of product types and a language table w …
8
votes
5answers
438 views
What is the difference between an ordered and a sorted collection?
Is there any difference between a sorted and an ordered collection?
0
votes
3answers
110 views
Casting generic collection to concrete implementation in C# 2.0.
Chosen Solution
Thanks for the help everyone. I've decided to do the following.
public static class PersonCollection
{
public static List<string> GetNames(RecordCollec …
1
vote
3answers
33 views
silverlight 3 collection binding
Someone please help me understand why this binding does not work...
I have a class called SelectionManager with a property called 'dates' which is populated by a WCF service. The …
5
votes
5answers
78 views
How might a class like .NET’s ConcurrentBag<T> be implemented?
I find myself very intrigued by the existence of a ConcurrentBag<T> class in the upcoming .NET 4.0 framework:
Bags are useful for storing objects when ordering doesn't ma …
0
votes
5answers
135 views
unique key value collection in C#
I want to build 2-dimentional collection where i need unique combination of key value pairs. For example Domain "Company" (Id: 1) can have MachineName "Machine1" and "Machine2", bu …
0
votes
4answers
72 views
Checking if my dictionary<int, list<int>> has an item in the list.
I am doing this right now:
foreach(..)
{
if(myDic.ContainsKey(car.ID) && myDic[car.ID].Contains(car.MfgID))
{
// do something
}
}
I was wondering if I can perform the …
0
votes
0answers
27 views
Iterate Doctrine Collection ordered by some field
I need something like this:
$products = Products::getTable()->find(274);
foreach ($products->Categories->orderBy('title') as $category)
{
…
0
votes
0answers
11 views
Binding collection to tool bar buttons and getting current selected item
Here is the scenario. I'm having a List in my view model and I want to generate a toolbar - each button representing a CustomObject which will have the tooltip, icon etc.
I'm defi …
1
vote
4answers
56 views
.NET - What is the best/correct way to iterator through a List and remove misc. members?
In C++ using std::list, this is a simple matter of erasing what an iterator is pointing to (the erase statement returns the next valid member of the list).
What's the best way to …
1
vote
5answers
94 views
type of system.Collection <T>
I'm creating a list of <T>, but i want to know the type of that T-object. (i'm using reflection in my project, so i don't know the type when i'm creating my code.
So first i …
1
vote
4answers
45 views
Overloading of GetEnumerator
Can't i overload GetEnumerator () like
IEnumerator<T> IEnumerable<T>.GetEnumerator<T> ( T[] val1,T[] val2)
{
.... some code
}
3
votes
4answers
264 views
Store a collection of values in a config file
In a .Net 3.5 (Windows) service, I would like to store a small collection of values in the config file. Basically, I need to allow admins to add and remove values from this small …
