Is there any point in specifying a Guid when using ComVisible(false)?
Having [assembly: ComVisible(false)] and [assembly: Guid(“…”)] at the same time makes perfect sense in certain cases. You start with an empty assembly and will perhaps want to expose something from it to COM. So you mark the assembly as not ComVisible and later mark the entities to expose as ComVisible. That is why the GUID … Read more