无法使用 ImportMany 属性进行编译

发布于 2024-09-30 11:39:41 字数 762 浏览 1 评论 0原文

对于 MEF 新手来说,我在第一次测试 MEF 时遇到了问题。我的问题代码如下-

using System;
using GlobalInterfaces;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Collections.Generic;
using System.Configuration;
using System.ComponentModel.Composition;
using System.ComponentModel.Composition.Hosting;

namespace GlobalInterfacesUnitTest
{
    [TestClass]
    public class GlobalInterfacesUnitTest
    {
        [TestMethod]
        public void TestMethod1()
        {
            [ImportMany(AllowRecomposition = true)]
            Lazy<IComponentGui, IImportComponentGuiCapabilites>[] Senders {get;set;}
        }
    }
}

我无法让编译器找到“ImportMany”属性的问题。我已经检查了几个演示的参考文献并复制了它们的参考文献,但仍然存在同样的问题。我看不到我所忽略的东西。我使用的是VS2010/Net4.0。

As to total MEF newbie, I'm having a problem with my first test of MEF. My problem code is below-

using System;
using GlobalInterfaces;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Collections.Generic;
using System.Configuration;
using System.ComponentModel.Composition;
using System.ComponentModel.Composition.Hosting;

namespace GlobalInterfacesUnitTest
{
    [TestClass]
    public class GlobalInterfacesUnitTest
    {
        [TestMethod]
        public void TestMethod1()
        {
            [ImportMany(AllowRecomposition = true)]
            Lazy<IComponentGui, IImportComponentGuiCapabilites>[] Senders {get;set;}
        }
    }
}

The problem that I cannot get the compiler to find "ImportMany" attribute. I've checked the references against several demos and copied their references and still have the same problem. I cannot see what I'm overlooking. I am using VS2010 / Net4.0.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

来日方长 2024-10-07 11:39:41

您不能在方法内定义属性。把它搬到课堂上。尝试:

[TestClass]
public class GlobalInterfacesUnitTest
{
    [ImportMany(AllowRecomposition = true)]
    Lazy<IComponentGui, IImportComponentGuiCapabilites>[] Senders {get;set;}

    [TestMethod]
    public void TestMethod1()
    {

    }
}

You can't define properties inside method. Move it out to class. Try:

[TestClass]
public class GlobalInterfacesUnitTest
{
    [ImportMany(AllowRecomposition = true)]
    Lazy<IComponentGui, IImportComponentGuiCapabilites>[] Senders {get;set;}

    [TestMethod]
    public void TestMethod1()
    {

    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文