NextSInt64 メソッド
| 編集/提案 ソースを表示NextSInt64(IRandom, Int64)
最大値を指定して64ビット符号付き整数値を生成します。
宣言
public static long NextSInt64(this IRandom random, long max)
引数
型 | 名前 | 説明 |
---|---|---|
IRandom | random | 疑似乱数生成器です。 |
System.Int64 | max | 最大値です。 |
戻り値
型 | 説明 |
---|---|
System.Int64 | 結果の分からない値を返します。 |
例外
型 | 条件 |
---|---|
System.ArgumentOutOfRangeException |
NextSInt64(IRandom, Int64, Int64)
最大値と最小値を指定して64ビット符号付き整数値を生成します。
宣言
public static long NextSInt64(this IRandom random, long max, long min)
引数
型 | 名前 | 説明 |
---|---|---|
IRandom | random | 疑似乱数生成器です。 |
System.Int64 | max | 最大値です。 |
System.Int64 | min | 最小値です。 |
戻り値
型 | 説明 |
---|---|
System.Int64 | 結果の分からない値を返します。 |
例外
型 | 条件 |
---|---|
System.ArgumentOutOfRangeException |