Built-in AOP in C# - is it on the way? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T22:51:10Z http://stackoverflow.com/feeds/question/833729 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/833729/built-in-aop-in-c-is-it-on-the-way 4 Built-in AOP in C# - is it on the way? Sam Saffron 2009-05-07T09:36:22Z 2009-05-07T22:44:40Z <p>In large apps I find myself really wishing I had built-in AOP facilities. As it stands in C# the best you can do is factories and RealProxys, PostSharp, ICorDebug, ICorProfiler or injection frameworks. There is no clean built-in way of doing AOP. </p> <p>Is there any indication anywhere (blog post / internal discussion) that indicates that AOP is on the way? </p> http://stackoverflow.com/questions/833729/built-in-aop-in-c-is-it-on-the-way/833919#833919 2 Answer by Romain Verdier for Built-in AOP in C# - is it on the way? Romain Verdier 2009-05-07T10:36:48Z 2009-05-07T10:36:48Z <p>I haven't heard of a "clean built-in way of doing AOP". But as you stated, there are already plenty "clean ways of doing AOP", using mature and powerful frameworks like <a href="http://www.postsharp.org" rel="nofollow">PostSharp</a> or <a href="http://www.castleproject.org/dynamicproxy/index.html" rel="nofollow">Castle DynamicProxy</a>.</p> <p>Using the BCL, one obvious way to do AOP, with pretty strong limitations thought, is to use transparent and real proxys, from .NET Remoting stack.</p> <p>Another way is to rely on System.Reflection.Emit to dynamically generate proxies, like, hum, DynamicProxy from Castle.</p> <p>Finally, there is also another official Microsoft flagged solution, that came with the <a href="http://msdn.microsoft.com/en-us/library/cc467894.aspx" rel="nofollow">Enterprise Library</a>. I'm talking about the <a href="http://msdn.microsoft.com/en-us/library/dd139982.aspx" rel="nofollow">Policy Injection Application Block</a>. <a href="http://msdn.microsoft.com/en-us/library/dd139982.aspx" rel="nofollow">Unity</a> also offers some interception capabilities that leverage PIAB.</p> http://stackoverflow.com/questions/833729/built-in-aop-in-c-is-it-on-the-way/834005#834005 1 Answer by Jb Evain for Built-in AOP in C# - is it on the way? Jb Evain 2009-05-07T10:54:47Z 2009-05-07T10:54:47Z <p>Romain's answer covers (almost :) perfectly the current solutions. As for the future support, <a href="http://www.microsoft.com/presspass/exec/techfellow/hejlsberg/default.mspx" rel="nofollow">Anders Hejlsberg</a> has <a href="http://almaer.com/blog/anders-hejlsberg-and-aop" rel="nofollow">previously stated</a> that they'were in wait &amp; see mode about AOP.</p> <p>We can only hope that with the managed rewrite of csc, and a «Compiler as a Service», one could plug into the compiler, and inject aspects there.</p> http://stackoverflow.com/questions/833729/built-in-aop-in-c-is-it-on-the-way/836150#836150 0 Answer by Mosh for Built-in AOP in C# - is it on the way? Mosh 2009-05-07T18:00:20Z 2009-05-07T22:33:37Z <p>The May release of Delphi Prism has AOP support at the language level.</p> <p>You can find out more about it here</p> <p><a href="http://prismwiki.codegear.com/en/Cirrus" rel="nofollow">http://prismwiki.codegear.com/en/Cirrus</a></p> <p>There is also an open source library of aspects from this location</p> <p><a href="http://code.remobjects.com/p/prismaspects/" rel="nofollow">http://code.remobjects.com/p/prismaspects/</a></p> http://stackoverflow.com/questions/833729/built-in-aop-in-c-is-it-on-the-way/837448#837448 0 Answer by Matt for Built-in AOP in C# - is it on the way? Matt 2009-05-07T22:44:40Z 2009-05-07T22:44:40Z <p>Spring.NET provides AOP as well. It takes a lot of configuration but once it's set up it works well.</p>