Most important things about C# generics... lesson learned - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T12:52:20Zhttp://stackoverflow.com/feeds/question/598710http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/598710/most-important-things-about-c-generics-lesson-learned5Most important things about C# generics... lesson learnedSasha2009-02-28T21:25:42Z2009-03-01T20:05:06Z
<p>What are most important things you know about generics: hidden features, common mistakes, best and most useful practices, tips...</p>
<p>I am starting to implement most of my library/API using generics and would like to collect most common patterns, tips, etc., found in practice.</p>
<p>Let me formalize the question: What is the most important thing you've learned about generics?</p>
<p><strong>Please try to provide examples -- it would be easier to understand, as opposed to convoluted and overly-dry descriptions</strong></p>
<p>Thanks</p>
<p>This question is somewhat similar to <a href="http://stackoverflow.com/questions/215548/whats-the-hardest-or-most-misunderstood-aspect-of-linq?...I">Jon's question</a>, though, on a different subject.</p>
http://stackoverflow.com/questions/598710/most-important-things-about-c-generics-lesson-learned/598721#59872110Answer by tvanfosson for Most important things about C# generics... lesson learnedtvanfosson2009-02-28T21:32:33Z2009-02-28T21:32:33Z<p>One of the most important things I've learned is that you can <a href="http://msdn.microsoft.com/en-us/library/d5x73970.aspx" rel="nofollow">constrain the generic type parameter(s)</a>. This can be very powerful, allowing you to take customize the class for only certain types of objects and allowing you to use the members of that type in your generic class. I realize that this is pretty fundamental, but it's one of the things that makes generics incredibly useful.</p>
http://stackoverflow.com/questions/598710/most-important-things-about-c-generics-lesson-learned/598729#5987293Answer by Greg D for Most important things about C# generics... lesson learnedGreg D2009-02-28T21:38:19Z2009-02-28T21:38:19Z<p>Understand the capabilities and limitations of generic type inference in C#. A deep understanding of what the compiler can, and can't, infer based on (e.g.) the types of parameters in your method can be leveraged to make the common use-cases of your API significantly more readable.</p>
http://stackoverflow.com/questions/598710/most-important-things-about-c-generics-lesson-learned/598745#5987452Answer by Pop Catalin for Most important things about C# generics... lesson learnedPop Catalin2009-02-28T21:48:01Z2009-02-28T21:48:01Z<p>The most important lesson about generics I've learned is: the more you use them the better.</p>
http://stackoverflow.com/questions/598710/most-important-things-about-c-generics-lesson-learned/598767#5987670Answer by crauscher for Most important things about C# generics... lesson learnedcrauscher2009-02-28T22:04:07Z2009-03-01T13:49:09Z<p>First of all it is inportant to know how Generics work in C#. This <a href="http://www.artima.com/intv/generics.html" rel="nofollow">article</a> gives you a good overview of generics by Anders Hejlsberg (The father of c#). I don't think that using them as often as possible is that good. Use generics when they really make sense. Always remember KISS and YAGNI (Keep It Simple Stupid; You Ain't Gonna Need It) from extreme programming.</p>
http://stackoverflow.com/questions/598710/most-important-things-about-c-generics-lesson-learned/598784#5987840Answer by Ian P for Most important things about C# generics... lesson learnedIan P2009-02-28T22:15:24Z2009-02-28T22:15:24Z<p>Generic delegate types are always type invariant.</p>
<p>I ran into an issue similar to what is outlined at the link below the other day, and it caused some confusion because I didn't understand why I had to cast my collection.</p>
<p><a href="http://www.theserverside.net/blogs/thread.tss?thread_id=47323" rel="nofollow">http://www.theserverside.net/blogs/thread.tss?thread_id=47323</a></p>
http://stackoverflow.com/questions/598710/most-important-things-about-c-generics-lesson-learned/598797#5987972Answer by Jeff Moser for Most important things about C# generics... lesson learnedJeff Moser2009-02-28T22:25:42Z2009-02-28T22:25:42Z<p>Each specialization of a generic type is treated as a unique type when it comes to things like static members. For example, with this type:</p>
<pre><code>class GenericType<T>
{
public static int SomeValue;
}
</code></pre>
<p>The assert succeeds if we do this:</p>
<pre><code>GenericType<int>.SomeValue = 3;
Debug.Assert(GenericType<double>.SomeValue == 0);
</code></pre>
<p>This is because:</p>
<pre><code>typeof(GenericType<int>) != typeof(GenericType<double>)
</code></pre>
<p>Even though</p>
<pre><code>typeof(GenericType<int>.GetGenericTypeDefinition() == typeof(GenericType<double>).GetGenericTypeDefinition()
</code></pre>
http://stackoverflow.com/questions/598710/most-important-things-about-c-generics-lesson-learned/598799#5987991Answer by Frank for Most important things about C# generics... lesson learnedFrank2009-02-28T22:26:07Z2009-02-28T22:26:07Z<p>Don't know if they are most important, but I've learned the following:</p>
<p>Generics will only be instantiable via reflection if you don't know the frikkin type. In some cases you may need non-generic interfaces to use your generic classes in situations where the type is unknown.</p>
<p>I almost wrecked my head until I grocked that</p>
<pre><code>public class Foo<T> where T : Foo<T> {
public T CloneMe() ...
}
</code></pre>
<p>is perfectly valid code and allows your base class to expose methods and properties related to the specialized class...that ended up in a definition of a state machine along its states:</p>
<pre><code>public abstract class Machine<S,M> where S : State<S,M> where M : Machine<S,M> {
protected S state;
}
public abstract class State<S,M> where S : State<S,M> where M : Machine<S,M> {
protected M machine;
}
</code></pre>
<p>Generics can get a bit unwieldy. The other day I had this:</p>
<pre><code>List<Tuple<Expression<Func<DataTable,object>>,Expression<Func<DataTable,object>>>>
</code></pre>
<p>phew...</p>
http://stackoverflow.com/questions/598710/most-important-things-about-c-generics-lesson-learned/598816#5988161Answer by Rauhotz for Most important things about C# generics... lesson learnedRauhotz2009-02-28T22:39:49Z2009-02-28T22:39:49Z<pre><code>MyGeneric<T> where T : IComparable
</code></pre>
<p>doesn't make </p>
<pre><code>MyGeneric<IComparable>
</code></pre>
<p>a base class of it.</p>
http://stackoverflow.com/questions/598710/most-important-things-about-c-generics-lesson-learned/599157#5991571Answer by Migol for Most important things about C# generics... lesson learnedMigol2009-03-01T02:54:51Z2009-03-01T02:54:51Z<p>I've learnt that generics is indeep powerful tool yet misused leads to very unreadable code.</p>
http://stackoverflow.com/questions/598710/most-important-things-about-c-generics-lesson-learned/599207#5992071Answer by Jason Jackson for Most important things about C# generics... lesson learnedJason Jackson2009-03-01T03:45:40Z2009-03-01T03:45:40Z<p><strong>No covariance or contra-variance</strong> (at least in 3.5). Be aware of this when designing class hierarchies that include generic type parameters.</p>
http://stackoverflow.com/questions/598710/most-important-things-about-c-generics-lesson-learned/599798#5997982Answer by Marc Gravell for Most important things about C# generics... lesson learnedMarc Gravell2009-03-01T13:10:17Z2009-03-01T13:10:17Z<p>Two interesting lessons. First; with lists; try to think in terms of <code>T</code>; <a href="http://marcgravell.blogspot.com/2009/02/what-c-40-covariance-doesn-do.html" rel="nofollow">for full details see here</a>, but in short you need to use:</p>
<pre><code>public void Foo<T>(IList<T> data) where T : SomeBaseClassOrInterface {}
</code></pre>
<p>and not:</p>
<pre><code>public void Foo(IList<SomeBaseClassOrInterface> data) {}
</code></pre>
<p><hr /></p>
<p>Second: <a href="http://stackoverflow.com/questions/194484/whats-the-strangest-corner-case-youve-seen-in-c-or-net/194671#194671">watch for the edge cases</a> ;-p</p>
<p>Can you see the trap here?</p>
<pre><code>static void Foo<T>() where T : new()
{
T t = new T();
Console.WriteLine(t.ToString()); // works fine
Console.WriteLine(t.GetHashCode()); // works fine
Console.WriteLine(t.Equals(t)); // works fine
// so it looks like an object and smells like an object...
// but this throws a NullReferenceException...
Console.WriteLine(t.GetType()); // BOOM!!!
}
</code></pre>