13
Làm thế nào để tự động tạo ra một lớp?
Tôi có một lớp trông như thế này: public class Field { public string FieldName; public string FieldType; } Và một đối tượng List<Field>có giá trị: {"EmployeeID","int"}, {"EmployeeName","String"}, {"Designation","String"} Tôi muốn tạo một lớp trông như thế này: Class DynamicClass { int EmployeeID, String EmployeeName, String Designation } Có cách …