Discover AOP (Aspect-Oriented Programming) in C# using PostSharp. Simplify your code, automate repetitive tasks, and enhance maintainability
seen from United States

seen from United States
seen from United States
seen from China

seen from Türkiye
seen from Canada

seen from Maldives

seen from India
seen from France
seen from China
seen from China
seen from Canada

seen from Malaysia

seen from United States

seen from United States
seen from Japan

seen from Indonesia
seen from Germany

seen from China
seen from China
Discover AOP (Aspect-Oriented Programming) in C# using PostSharp. Simplify your code, automate repetitive tasks, and enhance maintainability

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
PostSharp Diagnostics with 1 Year of Maintenance(QUANTITY: 5) -The no-brainer instrumentation toolbox for .NET and .NET Core #PostSharp #Diagnostics #開發 #軟體工程 #軟件 #優化 The no-brainer instrumentation toolbox for .NET and .NET Core. Add extensive logging to your application in minutes and direct it to any logging framework. Your way, faster than hand-written code http://www.pcstore.com.tw/cheerchain/M32254800.htm
PostSharp Threading with 1 Year of Maintenance 商業單機下載版-The pragmatic way to write machine-verified, thread-safe code! #PostSharp #Threading-The pragmatic way to write machine-verified, thread-safe code. Address #multithreading at the right level of abstraction with #threading models, #deadlock #detection, and #declarative thread #dispatching. #VS2017 #AOP #Devs http://www.pcstore.com.tw/cheerchain/M32252537.htm
PostSharp Framework with 1 Year of Maintenance 商業單機下載版(包含一年維護合約) (AOP編程框架軟體_.NET編程工具) #PostSharp #Framework #開發 #工具 #程式碼 #軟體 #優化 The #1 pattern-aware #compiler #extension for #C# and #VB. Automate your own patterns with aspect-oriented programming and validate your code with architecture validation. #VS2017 #AOP #Devs http://www.pcstore.com.tw/cheerchain/M21665080.htm
a really interesting article about a toolkit building an actor behaviour on top of the c# 5.0 features await and async

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Actor-Based Programming with C# 5.0 and PostSharp Threading Toolkit
http://dlvr.it/1j7RGf
Mehfuz shows off PostSharp and JustMock working together. If you need mocks in your tests for an aspect-oriented project, these two are the way to go.
ReturnOnException Aspect (postsharp)
public static class ExceptionHandler
{
[Serializable] public class ReturnOnException : OnExceptionAspect { public ReturnOnException(object objectToReturn) { _objectToReturn = objectToReturn; } object _objectToReturn; public override void OnException(MethodExecutionEventArgs eventArgs) { string message = eventArgs.Exception.Message; eventArgs.FlowBehavior = FlowBehavior.Return; eventArgs.ReturnValue = _objectToReturn; } }
}
Usage:
//returns -1 on any error
[ExceptionHandler.ReturnOnException(-1)]
public int DivideBy(int number, int dividedby) { return number / dividedby; }