Visual Studio Code – How to correctly create COM classes with .NET8?
I need to create a COM class in .NET8 that needs to be accessible to Excel. After watching this video, I implemented the following test bed class: namespace COMTestBedCS { [Guid("26a0aa6d-5aba-458f-92b4-b9a30ae0c65c")] [GeneratedComInterface] public partial interface ITestBed { int GetXPTO(); void…