mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-10 03:05:42 +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" />.
|
/// <paramref name="maxValue" />.
|
||||||
/// </returns>
|
/// </returns>
|
||||||
/// <exception cref="ArgumentNullException"><paramref name="random" /> is <see langword="null" />.</exception>
|
/// <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)
|
public static double NextDouble(this Random random, double minValue, double maxValue)
|
||||||
{
|
{
|
||||||
if (random is null)
|
if (random is null)
|
||||||
|
Loading…
Reference in New Issue
Block a user