有用的.NET库

2023-06-08,

1. Polly,重试

Polly is a .NET 3.5 / 4.0 / 4.5 / PCL library that allows developers to express transient exception and fault handling policies such as Retry, Retry Forever, Wait and Retry, or Circuit Breaker in a fluent manner. http://www.thepollyproject.org

简单的应用示例可以看这里:http://www.cnblogs.com/hj4444/p/4746616.html

2. AsyncEx,异步

A helper library for async/await.

Supports .NET 4.5/4.0, iOS, Android, Windows Store 8.0, Windows Phone Silverlight 8.0/7.5, Windows Phone Applications 8.1, Silverlight 5.0/4.0, and all portable libraries thereof.

3. Stateless,状态机(需要安装.NET Core支持)

Create state machines and lightweight state machine-based workflows directly in .NET code

4. Appccelerate.StateMachine,状态机

Hierarchical state machine with fluent definition syntax

5. Win32API,在看EasyHook的时候看到多了个贡献者,顺着去看了看,看到这个库,大概会有用吧,先放在这儿

https://www.nuget.org/packages/Win32API/

6. RazorGenerator

https://github.com/RazorGenerator/RazorGenerator

A Custom Tool for Visual Studio that allows processing Razor files at design time instead of runtime, allowing them to be built into an assembly for simpler reuse and distribution.

If you need to create a separate library for your precompiled MVC views, the best approach is to actually create an MVC project for that library, instead of a library project. You'll never actually run it as an Mvc app, but the fact that it comes with the right set of config files allows intellisense and other things to work a lot better than in a library project.

总结起来就是可以把View编译成库,到处使用

有用的.NET库的相关教程结束。

《有用的.NET库.doc》

下载本文的Word格式文档,以方便收藏与打印。