The difference between implicit and explicit delegate creation (with and without generics) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T02:38:26Z http://stackoverflow.com/feeds/question/863688 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/863688/the-difference-between-implicit-and-explicit-delegate-creation-with-and-without 1 The difference between implicit and explicit delegate creation (with and without generics) Nathan Ridley 2009-05-14T14:35:59Z 2009-10-19T13:02:59Z <p><em>See the four lines in the Go() method below:</em></p> <pre><code>delegate void Action&lt;T&gt;(T arg); delegate void Action(); void DoSomething&lt;T&gt;(Action&lt;T&gt; action) { //... } void DoSomething(Action action) { //... } void MyAction&lt;T&gt;(T arg) { //... } void MyAction() { //... } void Go&lt;T&gt;() { DoSomething&lt;T&gt;(MyAction&lt;T&gt;); // throws compiler error - why? DoSomething(new Action&lt;T&gt;(MyAction&lt;T&gt;)); // no problems here DoSomething(MyAction); // what's the difference between this... DoSomething(new Action(MyAction)); // ... and this? } </code></pre> <p>Note that the compiler error generated by the first call is: <em>The type arguments for method 'Action(T)' cannot be inferred from the usage. Try specifying the type arguments explicitly.</em></p> http://stackoverflow.com/questions/863688/the-difference-between-implicit-and-explicit-delegate-creation-with-and-without/863711#863711 5 Answer by Jon Skeet for The difference between implicit and explicit delegate creation (with and without generics) Jon Skeet 2009-05-14T14:40:03Z 2009-05-14T14:46:01Z <p>There's no difference between <code>MyAction</code> and <code>new Action(MyAction)</code> (when they're both valid) other than the former won't work in C# 1. This is an <code>implicit method group conversion</code>. There are times that this isn't applicable, most notable when the compiler can't work out what kind of delegate you want, e.g.</p> <pre><code>Delegate foo = new Action(MyAction); // Fine Delegate bar = MyAction; // Nope, can't tell target type </code></pre> <p>This comes into play in your question because both of the methods involved are overloaded. This leads to headaches, basically.</p> <p>As for the generics side - it's interesting. Method groups don't get much love from C# 3 type inference - I'm not sure whether that's going to be improved in C# 4 or not. If you call a generic method and specify the type argument, type inference works fairly well - but if you try to do it the other way round, it fails:</p> <pre><code>using System; class Test { static void Main() { // Valid - it infers Foo&lt;int&gt; DoSomething&lt;int&gt;(Foo); // Valid - both are specified DoSomething&lt;int&gt;(Foo&lt;int&gt;); // Invalid - type inference fails DoSomething(Foo&lt;int&gt;); // Invalid - mismatched types, basically DoSomething&lt;int&gt;(Foo&lt;string&gt;); } static void Foo&lt;T&gt;(T input) { } static void DoSomething&lt;T&gt;(Action&lt;T&gt; action) { Console.WriteLine(typeof(T)); } } </code></pre> <p>Type inference in C# 3 is very complicated, and works well in most cases (in particular it's great for LINQ) but fails in a few others. In an ideal world, it would become easier to understand <em>and</em> more powerful in future versions... we'll see!</p> http://stackoverflow.com/questions/863688/the-difference-between-implicit-and-explicit-delegate-creation-with-and-without/863724#863724 2 Answer by thecoop for The difference between implicit and explicit delegate creation (with and without generics) thecoop 2009-05-14T14:42:16Z 2009-05-14T14:42:16Z <p>The non-generic implicit delegate creation is just syntactic sugar, so the compiler generates exactly the same code for </p> <pre><code>DoSomething(MyAction); </code></pre> <p>and</p> <pre><code>DoSomething(new Action(MyAction)); </code></pre> <p>as it can infer the type of the delegate directly from the method arguments &amp; context.</p> <p>With the generic delegate, you have to specify the delegate type due to covariance and contravariance (see <a href="http://msdn.microsoft.com/en-us/library/ms173174%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms173174(VS.80).aspx</a> for details) - the T in Action can be a supertype to the T in the method, and it will still be accepted as a delegate method. So, you need to specify the T in the delegate explicitly as the compiler can't figure it out itself.</p> http://stackoverflow.com/questions/863688/the-difference-between-implicit-and-explicit-delegate-creation-with-and-without/864110#864110 0 Answer by Nathan Ridley for The difference between implicit and explicit delegate creation (with and without generics) Nathan Ridley 2009-05-14T15:41:26Z 2009-05-14T15:49:16Z <p>Ok, follow up. Here is the full code as requested. Note the use of lambda expressions below; earlier I used explicit delegate methods which is where a problem occurred.</p> <pre><code>public static class IDataReaderExtensions { public delegate T ObjectCreationHandler&lt;T&gt;(); public static IDataReader Each(this IDataReader dr, Action&lt;IDataReader&gt; action) { while (dr.Read()) action(dr); return dr; } public static IDataReader If(this IDataReader dr, bool condition, Action&lt;IDataReader&gt; action) { if (condition) action(dr); return dr; } public static T Return&lt;T&gt;(this IDataReader dataReader, T returnObject) { dataReader.Close(); dataReader.Dispose(); return returnObject; } public static T Return&lt;T&gt;(this IDataReader dataReader) { return dataReader.Return(() =&gt; Activator.CreateInstance&lt;T&gt;()); } public static T Return&lt;T&gt;(this IDataReader dataReader, ObjectCreationHandler&lt;T&gt; createObject) { T result = dataReader.MapTo(createObject); dataReader.Close(); dataReader.Dispose(); return result; } public static IDataReader MapTo&lt;T&gt;(this IDataReader dataReader, out T result) { result = dataReader.MapTo(() =&gt; Activator.CreateInstance&lt;T&gt;()); return dataReader; } public static IDataReader MapTo&lt;T&gt;(this IDataReader dataReader, out T result, ObjectCreationHandler&lt;T&gt; createObject) { result = dataReader.MapTo(createObject); return dataReader; } public static T MapTo&lt;T&gt;(this IDataReader dataReader) { return dataReader.MapTo(() =&gt; Activator.CreateInstance&lt;T&gt;()); } public static T MapTo&lt;T&gt;(this IDataReader dataReader, ObjectCreationHandler&lt;T&gt; createObject) { // return null/default if the datareader is invalid if (dataReader.FieldCount == 0) return default(T); // if there is no current record (as signified by a lack of fields) and we fail to read a record, return null/default if (dataReader.FieldCount == -1 &amp;&amp; !dataReader.Read()) return default(T); if (typeof(T).IsPrimitive || typeof(T).Equals(typeof(string))) return (T)Convert.ChangeType(dataReader[0], typeof(T)); T newObject = createObject(); foreach (var property in typeof(T).GetProperties(BindingFlags.Public | BindingFlags.Instance | BindingFlags.SetProperty)) { // to do... } return newObject; } } </code></pre> http://stackoverflow.com/questions/863688/the-difference-between-implicit-and-explicit-delegate-creation-with-and-without/1588562#1588562 0 Answer by Monu for The difference between implicit and explicit delegate creation (with and without generics) Monu 2009-10-19T13:02:59Z 2009-10-19T13:02:59Z <p>hi ...A simple search will give lots of informations in the net.</p> <p><a href="http://www.google.co.in/search?hl=en&amp;source=hp&amp;q=difference+between+implicit+and+explicit+type&amp;aq=f&amp;aqi=&amp;oq=&amp;cad=h" rel="nofollow" title="difference between implicit and explicit type">http://www.google.co.in/search?hl=en&amp;source=hp&amp;q=difference+between+implicit+and+explicit+type&amp;aq=f&amp;aqi=&amp;oq=&amp;cad=h</a></p> <p>Thanks, MONU</p>