I'm wondering for what the GUID in the AssemblyInfo.cs in C# Programs is:
[assembly: Guid("a4df9f47-b2d9-49a9-b237-09220857c051")]
The commentary says it's for COM objects, but why do they need a GUID? Is the GUID accessibly externally?
So if it's only for COMs, do you need a GUID when you set [assembly: ComVisible(false)]
?