Skip to content
This repository was archived by the owner on Oct 8, 2024. It is now read-only.

Latest commit

 

History

History
17 lines (9 loc) · 655 Bytes

File metadata and controls

17 lines (9 loc) · 655 Bytes

Snippets And Examples

Fluent API With Pathing Example

I stuggled to find a simple and complete example of building a Fluent API when I was learning. So I decided to create on myself.

This API controls the path the developer takes to make sure all properties are provided. It also has a fork in the command path.

The code is commented to help understand the process.

CPU Multithreading

Shows how to use Parallel.ForEach to split CPU bound work over multiple processors

Client TPS Limiter

I often come across third-party rate limiting (such as processing x number of calls per second). This project shows how to achieve this task easily.