Python's random module has some convenient functions for working with sequences:
C#'s Random class is pretty sparse by comparison: https://docs.microsoft.com/en-us/dotnet/api/system.random?view=netcore-3.1#methods
Make the following extension methods for Random:
Choice()
Choices()
Shuffle()
Python's
randommodule has some convenient functions for working with sequences:C#'s
Randomclass is pretty sparse by comparison: https://docs.microsoft.com/en-us/dotnet/api/system.random?view=netcore-3.1#methodsMake the following extension methods for
Random:Choice()Choices()Shuffle()