Help convert this delegate to an anonymous method or lambda - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T06:05:50Z http://stackoverflow.com/feeds/question/59515 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/59515/help-convert-this-delegate-to-an-anonymous-method-or-lambda 4 Help convert this delegate to an anonymous method or lambda George Mauer 2008-09-12T16:58:32Z 2008-09-12T17:47:48Z <p>I am new to all the anonymous features and need some help. I have gotten the following to work:</p> <pre><code> public void FakeSaveWithMessage(Transaction t) { t.Message = "I drink goats blood"; } public delegate void FakeSave(Transaction t); public void SampleTestFunction() { ... Expect.Call(delegate { _dao.Save(t); }).Do(new FakeSave(FakeSaveWithMessage)); ... } </code></pre> <p>But this is totally ugly and I would like to have the inside of the Do to be an anonymous method or even a lambda if it is possible. I tried:</p> <pre><code>Expect.Call(delegate { _dao.Save(t); }).Do(delegate(Transaction t2) { t2.Message = "I drink goats blood"; }); </code></pre> <p>and</p> <pre><code>Expect.Call(delegate { _dao.Save(t); }).Do(delegate { t.Message = "I drink goats blood"; }); </code></pre> <p>but these give me</p> <p><strong>Cannot convert anonymous method to type 'System.Delegate' because it is not a delegate type</strong> compile errors.</p> <p>What am I doing wrong?</p> <p><hr /></p> <p>Because of what Mark Ingram posted, seems like the best answer, though nobody's explicitly said it, is to do this:</p> <pre><code>public delegate void FakeSave(Transaction t); ... Expect.Call(delegate { _dao.Save(t); }).Do( new FakeSave(delegate(Transaction t2) { t.Message = expected_msg; })); </code></pre> http://stackoverflow.com/questions/59515/help-convert-this-delegate-to-an-anonymous-method-or-lambda/59531#59531 0 Answer by Chris Marasti-Georg for Help convert this delegate to an anonymous method or lambda Chris Marasti-Georg 2008-09-12T17:07:57Z 2008-09-12T17:07:57Z <p>Try something like:</p> <pre><code>Expect.Call(delegate { _dao.Save(t); }).Do(new EventHandler(delegate(Transaction t2) { t2.CheckInInfo.CheckInMessage = "I drink goats blood"; })); </code></pre> <p>Note the added EventHandler around the delegate.</p> <p>EDIT: might not work since the function signatures of EventHandler and the delegate are not the same... The solution you added to the bottom of your question may be the only way.</p> <p>Alternately, you could create a generic delegate type:</p> <pre><code>public delegate void UnitTestingDelegate&lt;T&gt;(T thing); </code></pre> <p>So that the delegate is not Transaction specific.</p> http://stackoverflow.com/questions/59515/help-convert-this-delegate-to-an-anonymous-method-or-lambda/59551#59551 7 Answer by Mark Ingram for Help convert this delegate to an anonymous method or lambda Mark Ingram 2008-09-12T17:20:21Z 2008-09-12T17:20:21Z <p>That's a well known error message:</p> <p><a href="http://staceyw.spaces.live.com/blog/cns!F4A38E96E598161E!1042.entry" rel="nofollow">http://staceyw.spaces.live.com/blog/cns!F4A38E96E598161E!1042.entry</a></p> <p>Basically you just need to put a cast in front of your anonymous delegate (your lambda expression).</p> http://stackoverflow.com/questions/59515/help-convert-this-delegate-to-an-anonymous-method-or-lambda/59568#59568 2 Answer by hwiechers for Help convert this delegate to an anonymous method or lambda hwiechers 2008-09-12T17:27:24Z 2008-09-12T17:27:24Z <p>What Mark said.</p> <p>The problem is that Do takes a Delegate parameter. The compiler can't convert the anonymous methods to Delegate, only a "delegate type" i.e. a concrete type derived from Delegate.</p> <p>If that Do function had took Action&lt;>, Action&lt;,> ... etc. overloads, you wouldn't need the cast.</p> http://stackoverflow.com/questions/59515/help-convert-this-delegate-to-an-anonymous-method-or-lambda/59611#59611 0 Answer by Brannon for Help convert this delegate to an anonymous method or lambda Brannon 2008-09-12T17:47:48Z 2008-09-12T17:47:48Z <p>The problem is not with your delegate definition, it's that the parameter of the Do() method is of type System.Delegate, and the compiler generated delegate type (FakeSave) does not implicitly convert to System.Delegate.</p> <p>Try adding a cast in front of your anonymous delegate:</p> <pre><code>Expect.Call(delegate { _dao.Save(t); }).Do((Delegate)delegate { t.Message = "I drink goats blood"; }); </code></pre>