CreateClassMoniker

[DllImport("ole32.dll", SetLastError = true)]
public static extern int CreateClassMoniker(
   ref Guid rclsid,
   out IMoniker ppmk
);

Microsoft documentation: Link

Last updated