26
votes
13answers
2k views
What are the differences between Generics in C# and Java… and Templates in C++?
I mostly use Java and generics are relatively new. I keep reading that Java made the wrong decision or that .NET has better implementations etc. etc.
So, what are the main differe …
23
votes
18answers
2k views
List<BusinessObject> or BusinessObjectCollection?
Prior to C# generics, everyone would code collections for their business objects by creating a collection base that implemented IEnumerable
IE:
public class CollectionBase : IEnu …
21
votes
10answers
5k views
C# - List<T> or IList<T>
Can anyone explain to me why I would want to use IList over List in C#?
Related question: Why is it considered bad to expose List<T>
20
votes
5answers
844 views
What do I return if the return type of a method is Void? (Not void!)
Due to the use of generics in Java I ended up in having to implement this function:
public Void doSomething() {
}
and the compiler demands that I return something. For now I'm …
18
votes
3answers
360 views
Why can’t I catch a generic exception in C#?
I was doing some unit testing on code that could throw a number of exceptions depending on the inputs. So I tried something like the below code: (simplified for the example)
s …
17
votes
12answers
2k views
Do C# Generics Have a Perfomance Benefit?
I have a number of data classes representing various entities.
Which is better: writing a generic class ( to say, print or output XML) using generics and interfaces, or writing a …
15
votes
9answers
460 views
What’s a good, generic algorithm for collapsing a set of potentially-overlapping ranges?
I have a method that gets a number of objects of this class
class Range<T>
{
public T Start;
public T End;
}
In my case T is DateTime, but lets use int for simplic …
15
votes
7answers
698 views
What are the reasons why Map.get(Object key) is not (fully) generic
What are the reasons behind the decision to not have a fully generic get method
in the interface of java.util.Map<K,V>.
To clarify the question, the signature of the method …
15
votes
12answers
1k views
Why do some claim that Java’s implementation of generics is bad?
I've occasionally heard that with generics, Java didn't get it right. (nearest reference, here)
Pardon my inexperience, but what would have made them better?
15
votes
5answers
577 views
Can I convert the following code to use generics?
I'm converting an application to use Java 1.5 and have found the following method:
/**
* Compare two Comparables, treat nulls as -infinity.
* @param o1
* @param o2
* …
15
votes
9answers
8k views
Remove duplicates from a List<T> in C#
Anyone have a quick method for de-duplicating a generic List in C#?
14
votes
14answers
1k views
foreach vs someList.Foreach(){}
There are apparently many ways to iterate over a collection. Curious if there are any differences, or why you'd use one way over the other.
First type:
List<string> someLis …
14
votes
4answers
12k views
C# List<> OrderBy Alphabetical Order
I'm using C# on Framework 3.5. I'm looking to quickly sort a Generic List<>. For the sake of this example lets say I have a List of a Person type with a property of lastname. …
14
votes
12answers
7k views
In C#, why can’t a List<string> object be stored in a List<object> variable
It seems that a List object cannot be stored in a List variable in C#, and can't even be explicitly cast that way.
List<string> sl = new List<string>();List<object> ol; …
13
votes
5answers
909 views
What is the Generic version of a Hashtable?
I been learning basics of generics and it looks like it can really improve the performance of the application.
But, I am not able to see the generic equivalent of Hashtable.
Please …
