| Range Constructor |
Create new range with specified minimum and maximum values.
Namespace:
Limilabs.FTP.Client
Assembly:
Ftp (in Ftp.dll) Version: 2.0.22214.1022
Syntax public Range(
int min,
int max
)
Public Sub New (
min As Integer,
max As Integer
)
public:
Range(
int min,
int max
)
new :
min : int *
max : int -> Range
Parameters
- min
- Type: SystemInt32
Minimum value included in this range. - max
- Type: SystemInt32
Maximum value included in this range.
See Also