What is the use of ComVisible attribute?- ComVisible attribute is used to select which public .NET classes and members are visible to COM. - It indicates if the resultant assembly will be visible to the COM clients. - If its state is specified to be as false, then the assembly which is registered as a COM server through the COM interop, will not expose any type of assembly.
|