1.

Aspect-oriented Programming?

Answer»

ASPECT Oriented Programming or AOP is an interesting concept that can be applied to MANY of the programming problems we solve everyday. In our VISUAL Studio team system code we have a lot of web-services and remoting code that essentially does the following

public void MyMethod(int parameter) { Trace.EnteredMethod("MyMethod", parameter); SecurityCheck(); // Bunch of processing Trace.ExitMethod("MyMethod"); }

Aspect Oriented Programming or AOP is an interesting concept that can be applied to many of the programming problems we solve everyday. In our Visual Studio team system code we have a lot of web-services and remoting code that essentially does the following



Discussion

No Comment Found