1

我编写了一个概念验证 COM 可调用包装器,以便用新功能替换现有的 COM 组件。我的项目的一个限制是我无法更改调用代码;调用代码应该不知道 COM Callable Wrapper 的存在。如果调用代码是 .NET 2.0,我创建的小型概念验证解决方案可以工作,但如果调用代码在 .NET 4.0 中,则会失败并出现 InvalidCastException。有人可以帮我发现这个 .NET 4.0-specific 的原因InvalidCastException吗?

COM 可调用包装器:

using System.EnterpriseServices;
using System.Runtime.InteropServices;

namespace DNNXPOC.CCWTestA
{
    [ComVisible(true)]
    [Guid("39D50FA3-DF73-4A3B-A4F8-4D21F5A27E83")]
    [InterfaceType(ComInterfaceType.InterfaceIsDual)]
    public interface ItestA
    {
        [DispId(1)]
        int process();
    }

    [ClassInterface(ClassInterfaceType.None)]
    [ComVisible(true)]
    [Guid("1A6ECD84-5147-4EF8-89A4-0F9AC5F3915B")]
    [ProgId("NNXPOC.testA")]
    [ComDefaultInterface(typeof(ItestA))]
    public class testA : ServicedComponent, ItestA
    {
        public int process()
        {
            const int result = 3;
            return result;
        }
    }
}

调用代码(在行抛出异常new):

using System;
using System.Runtime.InteropServices;
using NNXPOCLib;

namespace DNNXPOC
{
    public class TestAAccessWrapper : IDisposable
    {
        private ItestA _testA;
        private bool _isDisposed;

        public TestAAccessWrapper()
        {
            _testA = new testAClass();
        }

        public ItestA testA { ... }

        public void Dispose() { ... }
    }
}
4

0 回答 0