User James Hart - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T16:34:43Z http://stackoverflow.com/feeds/user/5755 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/178255/serviceprovider-cache-etc-done-with-generics-without-cast/186847#186847 0 Answer by James Hart for ServiceProvider, cache etc. done with generics without cast James Hart 2008-10-09T11:34:01Z 2008-10-09T11:34:01Z <p>As I posted to <a href="http://msmvps.com/blogs/jon_skeet/archive/2008/10/08/mapping-from-a-type-to-an-instance-of-that-type.aspx" rel="nofollow">Jon Skeet's blog,</a> the following approach might help you avoid casts, if that's a worry (though perhaps this introduces some other more serious issues than casting :)).</p> <p>If you have a weak dictionary implementation (one that uses weak-reference keys and cleans out otherwise unreferenced keys and their associated values), you could try something like this:</p> <pre><code> public class TypeDictionary { private class InnerTypeDictionary&lt;T&gt; { static WeakDictionary&lt;TypeDictionary, T&gt; _innerDictionary = new WeakDictionary&lt;TypeDictionary, T&gt;(); public static void Add(TypeDictionary dic, T value) { _innerDictionary.Add(dic, value); } public static T GetValue(TypeDictionary dic) { return _innerDictionary[dic]; } } public void Add&lt;T&gt;(T value) { InnerTypeDictionary&lt;T&gt;.Add(this, value); } public T GetValue&lt;T&gt;() { return InnerTypeDictionary&lt;T&gt;.GetValue(this); } } </code></pre> <p>It has the benefit of making all the type lookups into static generic type lookups, without direct recourse to System.Type objects, so I guess that might give you a performance kick. Would be interested to know if it does suit your caching scenario.</p> http://stackoverflow.com/questions/73227/what-is-the-difference-between-lambdas-and-delegates-in-the-net-framework/74414#74414 6 Answer by James Hart for What is the difference between lambdas and delegates in the .NET Framework? James Hart 2008-09-16T16:48:18Z 2008-09-16T16:48:18Z <p>The question is a little ambiguous, which explains the wide disparity in answers you're getting.</p> <p>You actually asked what the difference is between lambdas and delegates in the .NET framework; that might be one of a number of things. Are you asking:</p> <ul> <li><p>What is the difference between lambda expressions and anonymous delegates in the C# (or VB.NET) language?</p></li> <li><p>What is the difference between System.Linq.Expressions.LambdaExpression objects and System.Delegate objects in .NET 3.5?</p></li> <li><p>Or something somewhere between or around those extremes?</p></li> </ul> <p>Some people seem to be trying to give you the answer to the question 'what is the difference between C# Lambda expressions and .NET System.Delegate?', which doesn't make a whole lot of sense.</p> <p>The .NET framework does not in itself understand the concepts of anonymous delegates, lambda expressions, or closures - those are all things defined by language specifications. Think about how the C# compiler translates the definition of an anonymous method into a method on a generated class with member variables to hold closure state; to .NET, there's nothing anonymous about the delegate; it's just anonymous to the C# programmer writing it. That's equally true of a lambda expression assigned to a delegate type.</p> <p>What .NET <em>DOES</em> understand is the idea of a delegate - a type that describes a method signature, instances of which represent either bound calls to specific methods on specific objects, or unbound calls to a particular method on a particular type that can be invoked against any object of that type, where said method adheres to the said signature. Such types all inherit from System.Delegate.</p> <p>.NET 3.5 also introduces the System.Linq.Expressions namespace, which contains classes for describing code expressions - and which can also therefore represent bound or unbound calls to methods on particular types or objects. LambdaExpression instances can then be compiled into actual delegates (whereby a dynamic method based on the structure of the expression is codegenned, and a delegate pointer to it is returned).</p> <p>In C# you can produce instances of System.Expressions.Expression types by assigning a lambda expression to a variable of said type, which will produce the appropriate code to construct the expression at runtime.</p> <p>Of course, if you <em>were</em> asking what the difference is between lambda expressions and anonymous methods in C#, after all, then all this is pretty much irelevant, and in that case the primary difference is brevity, which leans towards anonymous delegates when you don't care about parameters and don't plan on returning a value, and towards lambdas when you want type inferenced parameters and return types.</p> <p>And lambda expressions support expression generation.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/51966#51966 Comment by James Hart on Hidden Features of C#? James Hart 2009-04-29T14:23:21Z 2009-04-29T14:23:21Z &quot;you force anything that inherits from this interface to contain a parameterless constructor&quot; Strictly speaking, no you don't - you force any class that implements your interface to prove that it know the name of a class that implements the interface and has a parameterless constructor. That's not the same thing. class A : SomeObject&lt;A&gt; { public A() // required } class B : SomeObject&lt;A&gt; { } // will compile fine, no constructor.