VersionFirmwareBefore Method (Int32, Int32, Int32) | 
 
            Tests to see if the given firmware version is older than the passed in
            version.
            
 
    Namespace: 
   ProScript
    Assembly:
   proscript-csharp (in proscript-csharp.dll) Version: 1.2.79.0 (1.2.79.0)
Syntaxpublic bool FirmwareBefore(
	int major,
	int minor,
	int release
)
Public Function FirmwareBefore ( 
	major As Integer,
	minor As Integer,
	release As Integer
) As Boolean
public:
bool FirmwareBefore(
	int major, 
	int minor, 
	int release
)
member FirmwareBefore : 
        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 this firmware version is older than the passed in version, false otherwise.
See Also