Stories recently tagged with 'AOP'

Extreme (and silly) AOP(badri.blogsavy.com)

submitted by yoavsionyoavsion(345) 4 years, 4 months ago

Taking AOP to extremes. A funny post showing how to abuse the idea of AOP. read more...

add a comment |category: |Views: 24

tags: another

De-crapify your code base with AOP using PostSharp(milkcarton.com)

submitted by akcoderakcoder(830) 4 years, 5 months ago

How to remove all the code thats irrelevant to what your trying to do, to make your code base easier to grok. read more...

add a comment |category: |Views: 27

tags: another

PostSharp - A Post-Compiler for .NET(postsharp.org)

submitted by atifazizatifaziz(1000) 4 years, 7 months ago

PostSharp is a platform that allows you to transform or analyze your .NET assemblies after compilation. It reads binary assemblies into memory, execute a suite of plug-ins and write back the modified code. Geat tool for Aspect-Oriented Programming (AOP). read more...

3 comments |category: |Views: 40

tags: another

Aspects the MS way(lowendahl.net)

submitted by lowendahllowendahl(750) 4 years, 11 months ago

Microsoft is constantly bashing aspects but have used similar techniques for their own frameworks and are pursuing the same benefits with other approaches. This post talks in lenght about those efforts and why MS just should give up and go Aspects already. read more...

add a comment |category: |Views: 7

tags: another

Aspect Oriented Programming using .NET(developerfusion.co.uk)

submitted by james_crowleyjames_crowley(315) 6 years, 3 months ago

Till now we were talking about non-mainstream languages to use Aspect Oriented Programming (AOP). Learn what exactly AOP is, and how you can go about getting this functionality in C#. read more...

add a comment |category: |Views: 16

tags: another

AOP using .NET(blogs.msdn.com)

submitted by RobChappelRobChappel(2720) 6 years, 4 months ago

Aspect Oriented Programming or AOP is an interesting concept that can be applied to many of the programming problems we solve everyday. Aspect# is AOP language which uses static compile time weaving. It uses its own proxy (and not CLR's proxy) called DynamicProxy. DynamicProxy is generated compile time and works differently while proxying interfaces (generates dynamic class and delegates method calls to the target of invocation) and proxying classes (generates stub class that inherits from the target). read more...

add a comment |category: |Views: 15

tags: another