Returns the application's build type. Generally this is "QA" (a build from the development source code) or "Release" (a build from the release source code).
Read-only property
| Visual Basic |
|---|
Public Property BuildType As String |
Read only String.
In this example, buildType contains the specific build type string. Usually this is "QA" or "Release".
| Example (C#) | Copy Code |
|---|---|
var application = new PCDLRN.Application(); var buildType = application.BuildType; | |