CoCreateInstance
[DllImport("ole32.dll", SetLastError = true)]
public static extern int CoCreateInstance(
ref Guid rclsid,
IntPtr pUnkOuter,
uint dwClsContext,
ref Guid riid,
out IntPtr ppv
);
Microsoft documentation: Link
Last updated