Gets minimal and maximal numbers.
シンタックス
'宣言
Public Shared Sub GetMinMax( _
ByVal As System.Integer, _
ByVal As System.Integer, _
ByRef As System.Integer, _
ByRef As System.Integer _
)
'使用法
Dim v1 As System.Integer
Dim v2 As System.Integer
Dim min As System.Integer
Dim max As System.Integer
Utils.GetMinMax(v1, v2, min, max)
public static void GetMinMax(
System.int ,
System.int ,
out System.int ,
out System.int
)
パラメータ
- v1
- The first number.
- v2
- The first number.
- min
- The minimal number.
- max
- The maximal number.
参照