mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-10 00:25:40 +00:00
Enforce 130 character length limit
This commit is contained in:
parent
c0425d0afd
commit
7c4ad9993e
@ -69,7 +69,9 @@ namespace X10D.RandomExtensions
|
||||
/// <paramref name="maxValue" />.
|
||||
/// </returns>
|
||||
/// <exception cref="ArgumentNullException"><paramref name="random" /> is <see langword="null" />.</exception>
|
||||
/// <exception cref="ArgumentException"><paramref name="maxValue" /> is less than <paramref name="minValue" />.</exception>
|
||||
/// <exception cref="ArgumentException">
|
||||
/// <paramref name="maxValue" /> is less than <paramref name="minValue" />.
|
||||
/// </exception>
|
||||
public static double NextDouble(this Random random, double minValue, double maxValue)
|
||||
{
|
||||
if (random is null)
|
||||
|
Loading…
Reference in New Issue
Block a user