Description: When you create a C# class, you can make it available as a COM object to code outside of the VS.NET framework. This is done through use of the utility REGASM. REGASM creates a COM Type Library that describes the COM aspects of the class for use by both early binding in C++ (through #import directives) and late binding systems (such as VB6, through project references), and registers the COM class in the Registry under the HKLMSoftwareCLSID hierarchy. However, every...