例如:
class TestType
{
public int a;
public int b;
}
TestType obj = Activator.CreateInstance(typeof(TestType), 1, 2) as TestType;
然后
obj.a==1
和obj.b==2
吗?有人知道如何解决我的问题吗? 最佳答案
不可能,请尝试
TestType obj = Activator.CreateInstance(typeof(TestType)) as TestType;
obj.a = 1;
obj.b = 2;