When you create a .NET assembly, you can register the assembly to work with COM by using the regasm program that comes with the .NET SDK. In visual studio you can just check the box in the project configuration that says "Register for COM interop". Then you COM applications can consume the .NET assembly classes.
-
Peter