GetRevision

Returns the revision number. The timeStamp is generated by the SVN system used during development.

Syntax

public const string enginedll = @"engine.dll";

[DllImport(enginedll, EntryPoint = "GetRevision")]
public static extern Int64 GetRevision(out IntPtr timeStamp);

public static Int64 GetRevision()
        {
            IntPtr timeStamp = IntPtr.Zero;
            return GetRevision(out timeStamp);
        }    

Property timeStamp

Size: 64 bit / 8 byte (reference)
A reference to the fixed char array (ASCII) representing the time stamp that is representing the date and time of release (fixed to the revision number). This time stamp is available since revision numbers are introduced late 2016. Earlier versions are available but have no API call to retrieve their revision or date / time of release.