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