我有这个方法:
public List<T> SomeMethod<T>( params ) where T : new()
所以我想调用SomeMethod
它,如果我知道类型就可以了:
SomeMethod<Class1>();
但是,如果我只有Class1
在运行时我无法调用它?
那么如何调用SomeMethod
未知的T类型呢?我通过使用反射得到了类型。
我有类型的类型但SomeMethod<Type | GetType()>
不起作用。
更新 7. 五月:
这是我想要实现的示例代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection;
namespace ConsoleApplication63
{
public class DummyClass
{
}
public class Class1
{
public string Name;
}
class AssemblyTypesReflection
{
static void Main(string[] args)
{
object obj = new Class1() { Name = "John" } ;
Assembly assembly = Assembly.GetExecutingAssembly();
var AsmClass1 = (from i in assembly.GetTypes() where i.Name == "Class1" select i).FirstOrDefault();
var list = SomeMethod<AsmClass1>((AsmClass1)obj); //Here it fails
}
static List<T> SomeMethod<T>(T obj) where T : new()
{
return new List<T> { obj };
}
}
}
这是一个从更大的背景中取出的演示。