Skip to content

Commit

Permalink
Closes #12.
Browse files Browse the repository at this point in the history
  • Loading branch information
Konard committed Oct 25, 2019
1 parent 6643a5b commit 0fd53d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RandomExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public static class RandomExtensions
/// <para>64-разрядное целое число без знака, которое больше или равно <see cref="ulong.MinValue"/> и меньше или равно <see cref="ulong.MaxValue"/>.</para>
/// </returns>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static ulong NextUInt64(this System.Random random) => random.NextUInt64((ulong.MinValue, ulong.MaxValue));
public static ulong NextUInt64(this System.Random random) => random.NextUInt64(Range.UInt64);

/// <summary>
/// <para>Returns a random 64-bit unsigned integer that is greater than or equal to minimum of specified range, and less than or equal to maximum of specified range.</para>
Expand Down

0 comments on commit 0fd53d6

Please sign in to comment.