internalGetXMLID

...

Syntax

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

[DllImport(IFCEngineDLL, EntryPoint = "internalGetXMLID")]
public static extern void internalGetXMLID(Int32 instance, out IntPtr XMLID);

public static string internalGetXMLID(Int32 instance)
        {
            IntPtr XMLID = IntPtr.Zero;
            RDF.engine.internalGetXMLID(Int32instance, out XMLID);
            return System.Runtime.InteropServices.Marshal.PtrToStringAnsi(XMLID);
        }    

Property instance

Size: 32 bit / 4 byte (value)
...

Property XMLID

Size: 32 bit / 4 byte (reference)
...