CreateItemMoniker

[DllImport("ole32.dll", SetLastError = true)]
public static extern int CreateItemMoniker(
   string lpszDelim,
   string lpszItem,
   out IMoniker ppmk
);

Microsoft documentation: Link

Last updated