为什么我在创建Lazy<>?时遇到错误'Activator.CreateInstance找不到构造函数'?

时间:2012-10-17 18:55:52

标签: c# delegates activator

我有类似下面的课程。 TestOne方法正在运行,但TestTwo未运行。因为TestTwo有一个参数。 Activator发出错误。我怎么能解决这个原因? 我需要一起使用Activator.CreateInstance和Delegate.CreateDelegate?

public class Foo
{
    public Foo(string name)
    {
        Name = name;
    }

    public string Name { get; set; }
}

public class MyClass
{
    public Lazy<IEnumerable<Foo>> Foos { get; set; }
}

[TestFixture]
public class Test
{
    private IEnumerable<T> CreateItems<T>() where T : class
    {
        for (int i = 0; i < 5; i++)
        {
            yield return (T)Activator.CreateInstance(typeof(T), i.ToString(CultureInfo.InvariantCulture));
        }
    }

    private IEnumerable<T> CreateItems<T>(int count) where T : class
    {
        for (int i = 0; i < count; i++)
        {
            yield return (T)Activator.CreateInstance(typeof(T), i.ToString(CultureInfo.InvariantCulture));
        }
    }

    public IEnumerable<T> TestMethod<T>() where T : class
    {
        return CreateItems<T>();
    }

    public IEnumerable<T> TestMethod2<T>(int i) where T : class
    {
        return CreateItems<T>(i);
    }

    [Test]
    public void TestOne()
    {
        var u = new MyClass();
        var prop = u.GetType().GetProperties().First(x => x.PropertyType.IsGenericType 
            && x.PropertyType.GetGenericTypeDefinition() == typeof(Lazy<>));
        var enu = prop.PropertyType.GetGenericArguments()[0];
        var j = enu.GetGenericArguments()[0];
        var func = typeof(Func<>).MakeGenericType(enu);
        var mi = this.GetType().GetMethod("TestMethod").MakeGenericMethod(j);
        var factory = Delegate.CreateDelegate(func, this, mi);
        var type = typeof(Lazy<>).MakeGenericType(enu);
        prop.SetValue(u, Activator.CreateInstance(type, factory), null);
        Debug.WriteLine("Count:" + u.Foos.Value.Count());
        foreach (var foo in u.Foos.Value)
        {
            Debug.WriteLine(foo.Name);
        }
    }

    [Test]
    public void TestTwo()
    {
        var u = new MyClass();
        var prop = u.GetType().GetProperties().First(x => x.PropertyType.IsGenericType 
            && x.PropertyType.GetGenericTypeDefinition() == typeof(Lazy<>));
        var enu = prop.PropertyType.GetGenericArguments()[0]; 
        var j = enu.GetGenericArguments()[0];
        var func = typeof(Func<,>).MakeGenericType(typeof(int), enu);
        var mi = this.GetType().GetMethod("TestMethod2").MakeGenericMethod(j);
        var factory = Delegate.CreateDelegate(func, this, mi);
        var type = typeof(Lazy<>).MakeGenericType(enu);
        // How do I send parameter to the TestMethos2 ? 
        // I get the error this line.
        prop.SetValue(u, Activator.CreateInstance(type, factory), null);
        Debug.WriteLine("Count:" + u.Foos.Value.Count());
        foreach (var foo in u.Foos.Value)
        {
            Debug.WriteLine(foo.Name);
        }
    }
}

2 个答案:

答案 0 :(得分:1)

当您使用Activator.CreateInstance时,它将尝试为您提供的参数找到最佳构造函数。如果您不提供参数,它将搜索Foo没有的无参数构造函数。

由于Foo只有一个带字符串参数的构造函数,因此必须为CreateInstance提供相同的定义,如下所示:

Activator.CreateInstance(typeof(Foo), new object[] { "a string" });

答案 1 :(得分:0)

在这里查看Lazy的构造函数信息。

http://msdn.microsoft.com/en-us/library/dd642331.aspx

public Lazy<IEnumerable<Foo>> Foos { get; set; }

必须向其构造函数发送Func<IEnumerable<Foo>>类型的委托才能创建Lazy<T>。但是在这里尝试发送Func<int, IEnumerable<Foo>>类型的委托。

Func<IEnumerable<Foo>>创建TestMethod2类型的委托是不可能的。 就在这里。

How to define a delegate using Delegate.CreateDelegate instead of Func<>?