Share via


xInfo.compilationDate Method

Definition

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(); 
}

Applies to