Create a bandwidth control system
问题 I plan to use C# to implement the bandwidth control system. I need to implement the system that can allow the system user to set a bandwidth rate to the computer user. How can I do that? 回答1: Maybe you can begin to have a look at the following question: Limit Bandwidth Speeds You might also consider having a look at TokenBucket and LeakyBucket implementations, as well as some Rate Limiting concept, for you to implement your own system. 来源: https://stackoverflow.com/questions/5908695/create-a