├── .gitignore ├── App.config ├── LICENSE.txt ├── Properties └── AssemblyInfo.cs ├── README.md ├── Weighted Randomizer Net Standard ├── Properties │ └── AssemblyInfo.cs ├── Weighted Randomizer Net Standard.csproj └── project.json ├── Weighted Randomizer Tests ├── DynamicWeightedRandomizerTests.cs ├── Properties │ └── AssemblyInfo.cs ├── SpeedTests.cs ├── StaticWeightedRandomizerTests.cs ├── Weighted Randomizer Tests.csproj ├── WeightedRandomizerTestsBase.cs └── packages.config ├── Weighted Randomizer VS 2012 Solution.sln └── Weighted Randomizer ├── DynamicWeightedRandomizer.cs ├── IWeightedRandomizer.cs ├── Properties └── AssemblyInfo.cs ├── RandomExtensionMethods.cs ├── StaticWeightedRandomizer.cs ├── ThreadAwareRandom.cs ├── Weighted Randomizer.csproj └── Weighted Randomizer.nuspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueRaja/Weighted-Item-Randomizer-for-C-Sharp/HEAD/.gitignore -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueRaja/Weighted-Item-Randomizer-for-C-Sharp/HEAD/App.config -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueRaja/Weighted-Item-Randomizer-for-C-Sharp/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueRaja/Weighted-Item-Randomizer-for-C-Sharp/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueRaja/Weighted-Item-Randomizer-for-C-Sharp/HEAD/README.md -------------------------------------------------------------------------------- /Weighted Randomizer Net Standard/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueRaja/Weighted-Item-Randomizer-for-C-Sharp/HEAD/Weighted Randomizer Net Standard/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Weighted Randomizer Net Standard/Weighted Randomizer Net Standard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueRaja/Weighted-Item-Randomizer-for-C-Sharp/HEAD/Weighted Randomizer Net Standard/Weighted Randomizer Net Standard.csproj -------------------------------------------------------------------------------- /Weighted Randomizer Net Standard/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueRaja/Weighted-Item-Randomizer-for-C-Sharp/HEAD/Weighted Randomizer Net Standard/project.json -------------------------------------------------------------------------------- /Weighted Randomizer Tests/DynamicWeightedRandomizerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueRaja/Weighted-Item-Randomizer-for-C-Sharp/HEAD/Weighted Randomizer Tests/DynamicWeightedRandomizerTests.cs -------------------------------------------------------------------------------- /Weighted Randomizer Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueRaja/Weighted-Item-Randomizer-for-C-Sharp/HEAD/Weighted Randomizer Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Weighted Randomizer Tests/SpeedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueRaja/Weighted-Item-Randomizer-for-C-Sharp/HEAD/Weighted Randomizer Tests/SpeedTests.cs -------------------------------------------------------------------------------- /Weighted Randomizer Tests/StaticWeightedRandomizerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueRaja/Weighted-Item-Randomizer-for-C-Sharp/HEAD/Weighted Randomizer Tests/StaticWeightedRandomizerTests.cs -------------------------------------------------------------------------------- /Weighted Randomizer Tests/Weighted Randomizer Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueRaja/Weighted-Item-Randomizer-for-C-Sharp/HEAD/Weighted Randomizer Tests/Weighted Randomizer Tests.csproj -------------------------------------------------------------------------------- /Weighted Randomizer Tests/WeightedRandomizerTestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueRaja/Weighted-Item-Randomizer-for-C-Sharp/HEAD/Weighted Randomizer Tests/WeightedRandomizerTestsBase.cs -------------------------------------------------------------------------------- /Weighted Randomizer Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueRaja/Weighted-Item-Randomizer-for-C-Sharp/HEAD/Weighted Randomizer Tests/packages.config -------------------------------------------------------------------------------- /Weighted Randomizer VS 2012 Solution.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueRaja/Weighted-Item-Randomizer-for-C-Sharp/HEAD/Weighted Randomizer VS 2012 Solution.sln -------------------------------------------------------------------------------- /Weighted Randomizer/DynamicWeightedRandomizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueRaja/Weighted-Item-Randomizer-for-C-Sharp/HEAD/Weighted Randomizer/DynamicWeightedRandomizer.cs -------------------------------------------------------------------------------- /Weighted Randomizer/IWeightedRandomizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueRaja/Weighted-Item-Randomizer-for-C-Sharp/HEAD/Weighted Randomizer/IWeightedRandomizer.cs -------------------------------------------------------------------------------- /Weighted Randomizer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueRaja/Weighted-Item-Randomizer-for-C-Sharp/HEAD/Weighted Randomizer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Weighted Randomizer/RandomExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueRaja/Weighted-Item-Randomizer-for-C-Sharp/HEAD/Weighted Randomizer/RandomExtensionMethods.cs -------------------------------------------------------------------------------- /Weighted Randomizer/StaticWeightedRandomizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueRaja/Weighted-Item-Randomizer-for-C-Sharp/HEAD/Weighted Randomizer/StaticWeightedRandomizer.cs -------------------------------------------------------------------------------- /Weighted Randomizer/ThreadAwareRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueRaja/Weighted-Item-Randomizer-for-C-Sharp/HEAD/Weighted Randomizer/ThreadAwareRandom.cs -------------------------------------------------------------------------------- /Weighted Randomizer/Weighted Randomizer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueRaja/Weighted-Item-Randomizer-for-C-Sharp/HEAD/Weighted Randomizer/Weighted Randomizer.csproj -------------------------------------------------------------------------------- /Weighted Randomizer/Weighted Randomizer.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueRaja/Weighted-Item-Randomizer-for-C-Sharp/HEAD/Weighted Randomizer/Weighted Randomizer.nuspec --------------------------------------------------------------------------------