 | Range Constructor |
Create new range with specified minimum and maximum values.
Namespace: Limilabs.FTP.ClientAssembly: Ftp (in Ftp.dll) Version: 2.0.26109.1248
Syntaxpublic 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 -> RangeParameters
- min Int32
- Minimum value included in this range.
- max Int32
- Maximum value included in this range.
See Also