C# and COM Aggregation
Does anyone know of a good source on implementing COM aggregation in C#, or if it's even possible? Thanks.
I have an existing COM class which implements several interfaces. I'd like to create a .NET class encapsulating it that I can QI (edit: cast) to the inner object's interfaces. Regular containment, like in the article above, or implementing all of the interfaces in the .NET class isn't ideal, although it may be a last resort.