string attribute = doc.SelectSingleNode("/class/@name").Value.ToString();
ObjectHandle employee = Activator.CreateInstance("EmployeeData", attribute);
Object employeeObject = employee.Unwrap();
return employeeObject;
'EmployeeData' 是当前正在执行的程序集。属性是从 XML 文件的入口节点中选择的。我需要以更安全的方式创建和返回对象,而不使用 ObjectHandle 和 UnWrap()。任何人都可以帮忙吗?