.NET COM Interop on Windows 7 64Bit gives me a headache
- by Kevin Stumpf
Hey guys,
.NET COM interop so far always has been working quite nicely. Since I upgraded to Windows 7 I don't get my .NET COM objects to work anymore.
My COM object is as easy as:
namespace Crap
{
[ComVisible(true)]
[Guid("2134685b-6e22-49ef-a046-74e187ed0d21")]
[ClassInterface(ClassInterfaceType.None)]
public class MyClass :…