I’m studying for Microsoft Certification exams and I came across a situation with a class that was not ComVisible but had methods that were. I assumed that since the class was not visible to COM, that its members would not be accessible. However, apparently the members can be ComVisible even if the class is not.
How can COM access a class member if it cannot access the class in the first place?
I have never had experience with exposing .NET assemblies to COM. This makes little sense to me.