GetLibraryIdentifier

Returns an identifier for the current instance of this library including date stamp and revision number.

Syntax

public const string ifcenginedll = @"ifcengine.dll";

[DllImport(IFCEngineDLL, EntryPoint = "GetLibraryIdentifier")]
public static extern IntPtr GetLibraryIdentifier(out IntPtr libraryIdentifier);

public static string GetLibraryIdentifier()
        {
            IntPtr libraryIdentifier = IntPtr.Zero;
            GetLibraryIdentifier(out libraryIdentifier);
            return System.Runtime.InteropServices.Marshal.PtrToStringAnsi(libraryIdentifier);
        }    

Property libraryIdentifier

Size: 64 bit / 8 byte (reference)
The identifier as string that represents the current library.