xInfo.compilationDate Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Retrieves the date on which the current version of Finance and Operations was last compiled.
public:
static System::String ^ compilationDate();
public static string compilationDate ();
static member compilationDate : unit -> string
Public Shared Function compilationDate () As String
Returns
A string that contains the date on which Finance and Operations was last compiled.
Remarks
The following example returns system information, including the date on which the application was last compiled:
str environment()
{
return xInfo::buildNo() + ' - '
+ xInfo::compilationDate() + ' - '
+ xInfo::dbName() + ' - '
+ xInfo::osName() + ' - '
+ xInfo::productName() + ' - '
+ xInfo::releaseVersion();
}