VersionFirmwareAfter Method (Int32, Int32, Int32) |
Tests to see if the given firmware version is newer than the passed in
version.
Namespace:
ProScript
Assembly:
proscript-csharp (in proscript-csharp.dll) Version: 1.2.79.0 (1.2.79.0)
Syntax public bool FirmwareAfter(
int major,
int minor,
int release
)
Public Function FirmwareAfter (
major As Integer,
minor As Integer,
release As Integer
) As Boolean
public:
bool FirmwareAfter(
int major,
int minor,
int release
)
member FirmwareAfter :
major : int *
minor : int *
release : int -> bool
Parameters
- major
- Type: SystemInt32
other major version - minor
- Type: SystemInt32
other minor version - release
- Type: SystemInt32
other release version
Return Value
Type:
BooleanTrue if the given firmware version is newer than the passed in version.
See Also