Resolve "Add possibility to get integers" #17

Merged
thorsten merged 8 commits from 9-add-possibility-to-get-integers into main 2024-05-29 09:40:29 +00:00
3 changed files with 3 additions and 3 deletions
Showing only changes of commit a8121a306e - Show all commits

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AssemblyVersion>1.1.2</AssemblyVersion>
<FileVersion>1.1.2</FileVersion>

View File

@ -66,7 +66,7 @@ public sealed class MultiThreadedRng<TNum> : IRandom<TNum>, IDisposable where TN
private uint mZ;
// This is the current buffer for the consumer side i.e. the public interfaces:
private TNum[] currentBuffer = Array.Empty<TNum>();
private TNum[] currentBuffer = [];
// The current pointer to the next current buffer's address to read from:
private int currentBufferPointer = BUFFER_SIZE;

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<IsPackable>false</IsPackable>