Returns the specific build number for the PC-DMIS application.
Read-only property
| Visual Basic |
|---|
Public Property BuildNumber As Integer |
Read only Integer.
In this example, the buildNumber variable holds the build number.
| Example (C#) | Copy Code |
|---|---|
var application = new PCDLRN.Application(); var buildNumber = application.BuildNumber; | |