IIDFromString

[DllImport("ole32.dll", SetLastError = true)]
public static extern int IIDFromString(
   [MarshalAs(UnmanagedType.LPWStr)] string lpsz,
   out Guid lpiid
);

Microsoft documentation: Linkarrow-up-right

Last updated