例如:

class TestType
{
   public int a;
   public int b;
}

TestType obj = Activator.CreateInstance(typeof(TestType), 1, 2) as TestType;


然后obj.a==1obj.b==2吗?有人知道如何解决我的问题吗?

最佳答案

不可能,请尝试

TestType obj = Activator.CreateInstance(typeof(TestType)) as TestType;
obj.a = 1;
obj.b = 2;

10-04 18:50