Most important things about C# generics... lesson learned - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T12:52:20Z http://stackoverflow.com/feeds/question/598710 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/598710/most-important-things-about-c-generics-lesson-learned 5 Most important things about C# generics... lesson learned Sasha 2009-02-28T21:25:42Z 2009-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#598721 10 Answer by tvanfosson for Most important things about C# generics... lesson learned tvanfosson 2009-02-28T21:32:33Z 2009-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#598729 3 Answer by Greg D for Most important things about C# generics... lesson learned Greg D 2009-02-28T21:38:19Z 2009-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#598745 2 Answer by Pop Catalin for Most important things about C# generics... lesson learned Pop Catalin 2009-02-28T21:48:01Z 2009-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#598767 0 Answer by crauscher for Most important things about C# generics... lesson learned crauscher 2009-02-28T22:04:07Z 2009-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#598784 0 Answer by Ian P for Most important things about C# generics... lesson learned Ian P 2009-02-28T22:15:24Z 2009-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#598797 2 Answer by Jeff Moser for Most important things about C# generics... lesson learned Jeff Moser 2009-02-28T22:25:42Z 2009-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&lt;T&gt; { public static int SomeValue; } </code></pre> <p>The assert succeeds if we do this:</p> <pre><code>GenericType&lt;int&gt;.SomeValue = 3; Debug.Assert(GenericType&lt;double&gt;.SomeValue == 0); </code></pre> <p>This is because:</p> <pre><code>typeof(GenericType&lt;int&gt;) != typeof(GenericType&lt;double&gt;) </code></pre> <p>Even though</p> <pre><code>typeof(GenericType&lt;int&gt;.GetGenericTypeDefinition() == typeof(GenericType&lt;double&gt;).GetGenericTypeDefinition() </code></pre> http://stackoverflow.com/questions/598710/most-important-things-about-c-generics-lesson-learned/598799#598799 1 Answer by Frank for Most important things about C# generics... lesson learned Frank 2009-02-28T22:26:07Z 2009-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&lt;T&gt; where T : Foo&lt;T&gt; { 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&lt;S,M&gt; where S : State&lt;S,M&gt; where M : Machine&lt;S,M&gt; { protected S state; } public abstract class State&lt;S,M&gt; where S : State&lt;S,M&gt; where M : Machine&lt;S,M&gt; { protected M machine; } </code></pre> <p>Generics can get a bit unwieldy. The other day I had this:</p> <pre><code>List&lt;Tuple&lt;Expression&lt;Func&lt;DataTable,object&gt;&gt;,Expression&lt;Func&lt;DataTable,object&gt;&gt;&gt;&gt; </code></pre> <p>phew...</p> http://stackoverflow.com/questions/598710/most-important-things-about-c-generics-lesson-learned/598816#598816 1 Answer by Rauhotz for Most important things about C# generics... lesson learned Rauhotz 2009-02-28T22:39:49Z 2009-02-28T22:39:49Z <pre><code>MyGeneric&lt;T&gt; where T : IComparable </code></pre> <p>doesn't make </p> <pre><code>MyGeneric&lt;IComparable&gt; </code></pre> <p>a base class of it.</p> http://stackoverflow.com/questions/598710/most-important-things-about-c-generics-lesson-learned/599157#599157 1 Answer by Migol for Most important things about C# generics... lesson learned Migol 2009-03-01T02:54:51Z 2009-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#599207 1 Answer by Jason Jackson for Most important things about C# generics... lesson learned Jason Jackson 2009-03-01T03:45:40Z 2009-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#599798 2 Answer by Marc Gravell for Most important things about C# generics... lesson learned Marc Gravell 2009-03-01T13:10:17Z 2009-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&lt;T&gt;(IList&lt;T&gt; data) where T : SomeBaseClassOrInterface {} </code></pre> <p>and not:</p> <pre><code>public void Foo(IList&lt;SomeBaseClassOrInterface&gt; 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&lt;T&gt;() 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>